/* ============================================================
   HOMECHEK - Static Site Stylesheet
   Custom classes prefixed with "hc-"
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* ---------- CSS Variables ---------- */
:root {
  --hc-blue: #05549E;
  --hc-blue-dark: #043d7a;
  --hc-blue-light: #6DB3F2;
  --hc-dark: #101828;
  --hc-gray-text: #666666;
  --hc-body-text: #101828;
  --hc-bg-light: #f9f9f7;
  --hc-border: #e5e7eb;
  --hc-footer-bg: #101828;
  --hc-social-bg: #1e2939;  
      --hc-dark:        #101828;
      --hc-dark-2:      #1e2939;
      --hc-dark-3:      #364153;
      --hc-text:        #0a0a0a;
      --hc-muted:       #999;
      --hc-bg-alt:      #F9F9F7;
      --hc-border:      rgba(0,0,0,.12);
}

/* ---------- Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--hc-body-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;;
}

/* ---------- Navbar ---------- */
.hc-navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hc-navbar .navbar-brand img {
  height: 80px;
  width: auto;
}

@media (min-width: 768px) {
  .hc-navbar .navbar-brand img {
    height: 96px;
  }
}

.hc-nav-link {
  color: #fff !important;
  font-size: 1.125rem;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}

.hc-nav-link:hover {
  color: rgba(255,255,255,0.8) !important;
}

.hc-nav-link.active {
  color: #fff !important;
}

 
.hc-nav-toggler {
  border-color: rgba(255,255,255,0.5) !important;
}

.hc-nav-toggler .navbar-toggler-icon {
  filter: invert(1);
}

.hc-btn-book {
  padding: 10px 32px;
  border: 2px solid #fff;
  color: #fff !important;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.hc-btn-book:hover {
  background: #fff;
  color: #1a1a1a !important;
}

/* Offcanvas mobile nav */
.hc-offcanvas {
  background-color: var(--hc-dark) !important;
}

.hc-offcanvas .offcanvas-title {
  color: #fff;
}

.hc-offcanvas .btn-close {
  filter: invert(1);
}

.hc-offcanvas .hc-nav-link {
  padding: 12px 0;
  font-size: 1.25rem;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Hero Section ---------- */
.hc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hc-hero-bg {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center; 
}

@media(max-width:768px){
  .hc-hero-bg{
     min-height: auto;
  }
}
.hc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.80), transparent);
}

.hc-hero-content {
  position: relative;
  z-index: 10;
  padding: 160px 1.5rem 4rem;
}

@media (min-width: 768px) {
  .hc-hero-content {
    padding: 180px 3rem 4rem;
  }
}

@media (min-width: 992px) {
  .hc-hero-content {
    padding: 180px 5rem 4rem;
  }
}

.hc-hero-title {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: #fff;
  line-height: 1;
  font-weight: 600;
  max-width: 700px;
}

.hc-hero-badge {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(0,0,0,0.60);
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  overflow-x: auto;width: fit-content;
  max-width: 100%;
}

.hc-hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.375rem;
  line-height: 2.375rem;
  max-width: 640px;
}
/* base button rules shared by most variants */
/* shared base for most buttons to eliminate repetition */
.hc-btn-primary,
.hc-btn-outline-white,
.hc-btn-outline-services,
.hc-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 53px;
}

.hc-btn-primary {
  /* extend the base class for primary buttons */
  padding: 12px 32px;
  background-color: var(--hc-blue);
  color: #fff !important;
  border: none;
  font-size: 1.125rem;
}

.hc-btn-primary:hover {
  background-color: var(--hc-blue-dark);
  color: #fff !important;
}
.hc-btn-outline-white {
  border: 2px solid #fff;
  color: #fff !important;
  padding: 12px 32px;
  font-size: 1.125rem;
  background: transparent;
}

.hc-btn-outline-white:hover {
  background: #fff;
  color: #1a1a1a !important;
}

/* ---------- Section Badge (Capsule) ---------- */
.hc-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hc-blue);
}

.hc-badge-pill .hc-dot {
  color: var(--hc-blue);
  font-size: 1.2rem;
  line-height: 1;
}

/* ---------- Stats Section ---------- */
.hc-stats-section {
  background-color: #fff;
  padding: 100px 1.5rem;
}

@media (min-width: 768px) {
  .hc-stats-section {
    padding: 100px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-stats-section {
    padding: 100px 5rem;
  }
}

.hc-house-img-wrap {
  position: relative;
}

.hc-house-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.hc-badge-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-badge-overlay img {
  width: 180px;
}

.hc-stats-content {
  padding-top: 80px;
}

.hc-stats-desc {
  font-size: 1.25rem;
  color: #111827;
  line-height: 1.8;
}

.hc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .hc-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.hc-stat-item {
  padding: 0 16px 0 0;
}

@media (min-width: 992px) {
  .hc-stat-item {
    border-right: 1px solid #d1d5db;
    padding: 0 1rem;
  }

  .hc-stat-item:first-child {
    padding-left: 0;
  }

  .hc-stat-item:last-child {
    border-right: none;
  }
}

.hc-stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;;
}

.hc-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ---------- Services Section ---------- */
.hc-services-section {
  background-color: var(--hc-blue);
  padding: 80px 1.5rem;
}

@media (min-width: 768px) {
  .hc-services-section {
    padding: 80px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-services-section {
    padding: 80px 5rem;
  }
}

.hc-services-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
}

.hc-service-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hc-service-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

.hc-service-card h3 {
  color: #1a1a1a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hc-service-card p {
  color: var(--hc-gray-text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hc-service-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 309px;
}

.hc-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hc-service-card:hover .hc-service-img-wrap img {
  transform: scale(1.05);
}

.hc-service-arrow {
  position: absolute;
  bottom: 16px;
  right: 6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.hc-service-card:hover .hc-service-arrow {
  transform: rotate(-31.7deg);
}
.hc-btn-outline-services {
  gap: 8px;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.125rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
}

.hc-btn-outline-services:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ---------- Fast Report Section ---------- */
.hc-fast-report-section {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.hc-fast-report-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-fast-report-content {
  position: relative;
  z-index: 10;
  padding: 64px 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hc-fast-report-content {
    padding: 64px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-fast-report-content {
    padding: 64px 5rem;
  }
}

.hc-fast-report-inner {
  max-width: 640px;
}

.hc-fast-report-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.75rem;
  color: var(--hc-body-text);
  margin-top: 24px;
  margin-bottom: 24px;
}

.hc-fast-report-title span {
  color: var(--hc-blue);
}

.hc-fast-report-desc {
  font-size: 1rem;
  line-height: 1.875rem;
  color: var(--hc-body-text);
  margin-bottom: 24px;
}

.hc-fast-report-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  color: var(--hc-body-text);
  margin-bottom: 16px;
}

.hc-fast-report-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.hc-fast-report-list li {
  font-size: 1rem;
  line-height: 1.875rem;
  color: var(--hc-body-text);
  padding: 4px 0;
}

.hc-fast-report-list li::before {
  content: '• ';
}

/* ---------- How We Deliver Section ---------- */
.hc-deliver-section {
  background: #fff;
  padding: 96px 1.5rem;
}

@media (min-width: 768px) {
  .hc-deliver-section {
    padding: 96px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-deliver-section {
    padding: 96px 5rem;
  }
}

.hc-deliver-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.125rem;
  color: var(--hc-body-text);
}

.hc-deliver-title span {
  color: var(--hc-blue);
}

.hc-step-icon {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.hc-step-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
}

.hc-step-desc {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #000;
  max-width: 254px;
  margin: 0 auto;
}

.hc-steps-wrap {
  position: relative;
}

/* Connecting lines between steps on desktop */
@media (min-width: 992px) {
  .hc-step-col {
    position: relative;
  }

  .hc-step-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 59px;
    left: calc(50% + 59px);
    width: calc(100% - 118px);
    height: 1px;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
  }
}

/* ---------- Google Reviews Section ---------- */
.hc-reviews-section {
  background-color: var(--hc-bg-light);
  padding: 40px 1.5rem;
}

@media (min-width: 768px) {
  .hc-reviews-section {
    padding: 80px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-reviews-section {
    padding: 80px 5rem;
  }
}

.hc-reviews-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hc-body-text);
}

.hc-reviews-subtitle {
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(16,24,40,0.8);
  max-width: 640px;
  margin: 0 auto;
}

.hc-google-header-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hc-google-logo-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: inline-flex;
}

.hc-google-rating-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hc-blue);
}

.hc-google-based-on {
  font-size: 0.875rem;
  color: rgba(16,24,40,0.7);
}

.hc-stat-mini-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.hc-stat-mini-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hc-blue);
  display: block;
  margin-bottom: 4px;
}

.hc-stat-mini-label {
  font-size: 0.75rem;
  color: rgba(16,24,40,0.7);
}

.hc-btn-review-google {
  background-color: var(--hc-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hc-btn-review-google:hover {
  opacity: 0.9;
  box-shadow: 0 4px 16px rgba(5,84,158,0.3);
  color: #fff;
}

/* Reviews Carousel */
.hc-reviews-carousel-wrap {
  position: relative;
  padding: 0 20px;
}

.hc-reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hc-reviews-track::-webkit-scrollbar {
  display: none;
}

.hc-review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
  width: 340px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hc-review-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.hc-review-quote-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hc-star {
  color: #FFC107;
  font-size: 1.1rem;
}

.hc-review-text {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: rgba(16,24,40,0.85);
  margin-bottom: 24px;
}

.hc-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.hc-reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.hc-reviewer-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--hc-body-text);
}

.hc-reviewer-days {
  font-size: 0.75rem;
  color: #6b7280;
}

.hc-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--hc-blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.hc-carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.hc-carousel-btn-prev {
  left: -24px;
}

.hc-carousel-btn-next {
  right: -24px;
}

.hc-reviews-cta-link {
  color: var(--hc-blue);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: text-decoration 0.2s;
}

.hc-reviews-cta-link:hover {
  text-decoration: underline;
  color: var(--hc-blue);
}

/* ---------- Footer ---------- */
.hc-footer {
  background-color: var(--hc-footer-bg);
}

.hc-footer-inner {
  padding: 48px 1.5rem;
}

@media (min-width: 768px) {
  .hc-footer-inner {
    padding: 48px 3rem;
  }
}

@media (min-width: 992px) {
  .hc-footer-inner {
    padding: 48px 5rem;
  }
}

.hc-footer-logo img {
  height: 130px;
  width: auto;
}

.hc-footer-desc {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: rgba(255,255,255,0.9);
}

.hc-footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.hc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-links li {
  margin-bottom: 12px;
}

.hc-footer-links a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hc-footer-links a:hover {
  color: var(--hc-blue-light);
}

.hc-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.hc-footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.hc-footer-contact-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #fff;
}

.hc-footer-bottom {
  border-top: 1px solid #364153;
  padding-top: 32px;
  margin-top: 56px;
}

.hc-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--hc-social-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-right: 8px;
}

.hc-social-btn:hover {
  background-color: var(--hc-blue);
}

.hc-footer-copy {
  font-size: 0.875rem;
  color: #fff;
}

.hc-footer-policy a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.hc-footer-policy a:hover {
  color: var(--hc-blue-light);
}

/* ---------- Star rating utility ---------- */
.hc-stars {
  display: inline-flex;
  gap: 4px;
}

/* ---------- Utility overrides ---------- */
.hc-max-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}


 
 

    /* ─── NAVBAR ────────────────────────────────────────────────── */
    .hc-service-navbar {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(0,0,0,.3);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .hc-service-navbar .hc-service-nav-logo {
      height: 80px;
      width: auto;
    }

    @media (min-width: 768px) {
      .hc-service-navbar .hc-service-nav-logo { height: 96px; }
    }

    .hc-service-nav-link {
      color: #fff;
      text-decoration: none;
      font-size: 1.125rem;
      transition: color .2s;
      position: relative;
    }

    .hc-service-nav-link.active { color: #6DB3F2; }

    .hc-service-nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--hc-blue);
    }

    .hc-service-nav-link:hover { color: rgba(255,255,255,.8); }

    .hc-service-nav-btn {
      display: none;
      padding: .5rem 2rem;
      border: 2px solid #fff;
      border-radius: 999px;
      background: transparent;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }

    .hc-service-nav-btn:hover {
      background: #fff;
      color: #111;
    }

    @media (min-width: 992px) {
      .hc-service-nav-btn { display: inline-block; }
    }

    /* Mobile menu toggle */
    .hc-service-nav-toggler {
      background: transparent;
      border: 2px solid rgba(255,255,255,.6);
      border-radius: 6px;
      padding: 4px 8px;
      color: #fff;
      font-size: 1.25rem;
      cursor: pointer;
      line-height: 1;
      display: flex;
      align-items: center;
    }

    @media (min-width: 992px) {
      .hc-service-nav-toggler { display: none; }
    }

    .hc-service-mobile-menu {
      display: none;
      flex-direction: column;
      gap: .75rem;
      padding: 1rem 0 .5rem;
    }

    .hc-service-mobile-menu.open { display: flex; }

    .hc-service-mobile-menu a {
      color: #fff;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
    }

    /* ─── HERO ──────────────────────────────────────────────────── */
    .hc-service-hero {
      position: relative;
      height: 500px;
      overflow: hidden;
    }

    .hc-service-hero-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hc-service-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(5,84,158,.9), rgba(5,84,158,.7));
    }

    .hc-service-hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      justify-content: center;
      padding: 0 1.5rem;
      max-width: 1200px;
    }

    @media (min-width: 768px) { .hc-service-hero-content { padding: 0 3rem; } }
    @media (min-width: 992px) { .hc-service-hero-content { padding: 0 5rem; } }

    .hc-service-hero-eyebrow {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      letter-spacing: .7px;
      text-transform: uppercase;
      line-height: 21px;
      margin: 0;
    }

    .hc-service-hero-heading {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 600;
      color: #fff;
      letter-spacing: .7px;
      line-height: 1.25;
      max-width: 1047px;
      margin: 0;
      text-transform: capitalize;
    }

    /* ─── SERVICES TITLE SECTION ─────────────────────────────────── */
    .hc-service-title-section {
      background: #fff;
      padding: 4rem 1.5rem;
    }

    @media (min-width: 768px) { .hc-service-title-section { padding: 4rem 3rem; } }
    @media (min-width: 992px) { .hc-service-title-section { padding: 4rem 5rem; } }

    .hc-service-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: #fff;
      border: 1px solid #d1d5db;
      border-radius: 999px;
      padding: 10px 30px;
      margin-bottom: 1rem;
    }

    .hc-service-badge-dot { color: var(--hc-blue); font-size: 1.25rem; line-height: 1; }

    .hc-service-badge-text {
      font-size: 16px;
      font-weight: 700;
      color: var(--hc-blue);
    }

    .hc-service-section-heading {
      font-size: clamp(1.75rem, 4vw, 2.625rem);
      font-weight: 700;
      color: #101828;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hc-service-section-lead {
      font-size: 18px;
      line-height: 2;
      color: #0a0a0a;
      opacity: .8;
      max-width: 700px;
      margin: 0 auto;
    }

    /* ─── ZIG-ZAG SERVICE ROWS ──────────────────────────────────── */
    .hc-service-row-wrap {
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 992px) {
      .hc-service-row-wrap { flex-direction: row; }
      .hc-service-row-wrap.hc-service-row-reverse { flex-direction: row-reverse; }
    }

    /* Content side */
    .hc-service-content-col {
      width: 100%;
      padding: 4rem 1.5rem;
      display: flex;
      align-items: center;
    }

    @media (min-width: 768px) { .hc-service-content-col { padding: 4rem 3rem; } }
    @media (min-width: 992px) {
      .hc-service-content-col {
        width: 50%;
        padding: 6rem 3rem 6rem 5rem;
      }
      .hc-service-row-reverse .hc-service-content-col {
        padding: 6rem 5rem 6rem 3rem;
      }
    }

    .hc-service-content-inner { width: 100%; max-width: 600px; }

    /* Number badge */
    .hc-service-number-badge {
      display: inline-flex;
      align-items: center;
      margin-bottom: 2rem;
    }

    .hc-service-number-box {
      background: var(--hc-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px 8px;
      height: 38px;
      min-width: 35px;
    }

    .hc-service-number-box span {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      letter-spacing: .5px;
      line-height: 28px;
    }

    .hc-service-label-gradient {
      background: linear-gradient(to right, #05549e, rgba(130,179,226,.62) 27.161%, rgba(209,213,220,0) 70.915%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      height: 38px;
    }

    .hc-service-label-gradient span {
      font-size: 16px;
      font-weight: 600;
      white-space: nowrap;
      color: rgba(0,0,0,.8);
      letter-spacing: 2px;
      line-height: 18px;
    }

    /* Service title */
    .hc-service-card-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 600;
      color: #101828;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    /* Description */
    .hc-service-description {
      font-size: 16px;
      font-weight: 400;
      color: var(--hc-text);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    /* Why it matters block */
    .hc-service-matters {
      background: rgba(255,255,255,.5);
      border-left: 3.323px solid var(--hc-blue);
      border-radius: 2px;
      padding: 1rem;
      margin-bottom: 2rem;
    }

    .hc-service-matters-label {
      font-size: 16px;
      font-weight: 700;
      color: var(--hc-blue);
      letter-spacing: .5px;
      line-height: 24px;
      margin-bottom: 8px;
    }

    .hc-service-matters-text {
      font-size: 14px;
      font-weight: 400;
      color: #444;
      line-height: 24px;
      font-style: italic;
      margin: 0;
    }

    /* Details grid */
    .hc-service-details-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .hc-service-detail-label {
      font-size: 16px;
      font-weight: 600;
      color: var(--hc-muted);
      margin-bottom: 4px;
      line-height: 24px;
    }

    .hc-service-detail-value {
      font-size: 14px;
      font-weight: 600;
      color: var(--hc-blue);
      line-height: 21px;
    }

    /* CTA button */
    .hc-service-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .875rem 2rem;
      background: var(--hc-blue);
      color: #fff;
      border-radius: 999px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      line-height: 28px;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(5,84,158,.3);
      transition: background .2s, box-shadow .2s, transform .2s;
      cursor: pointer;
    }

    .hc-service-cta-btn:hover {
      background: var(--hc-blue-dark);
      box-shadow: 0 6px 20px rgba(5,84,158,.4);
      color: #fff;
    }

    .hc-service-cta-btn:hover .hc-service-arrow {
      transform: translateX(4px);
    }

    .hc-service-arrow {
      transition: transform .2s;
      font-size: 1.1rem;
    }

    /* Image side */
    .hc-service-image-col {
      width: 100%;
      order: -1;
    }

    @media (min-width: 992px) {
      .hc-service-image-col {
        width: 50%;
        order: 0;max-height: 850px;
        align-self: stretch;
      }
    }

    .hc-service-image-wrap {
      position: relative;
      overflow: hidden;
      height: 400px;
    }

    @media (min-width: 992px) {
      .hc-service-image-wrap { height: 100%; min-height: 500px; }
    }

    .hc-service-image-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .hc-service-icon-badge {
      position: absolute;
      top: 2rem;
      background: #fff;
      border-radius: 50%;
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,.18);
      font-size: 1.5rem;
      color: var(--hc-blue);
    }

    .hc-service-icon-badge.left  { left: 2rem; }
    .hc-service-icon-badge.right { right: 2rem; }

    /* ─── BOTTOM CTA ─────────────────────────────────────────────── */
    .hc-service-cta-section {
      background: var(--hc-blue);
      padding: 6rem 1.5rem;
    }

    @media (min-width: 768px) { .hc-service-cta-section { padding: 6rem 3rem; } }
    @media (min-width: 992px) { .hc-service-cta-section { padding: 6rem 5rem; } }

    .hc-service-cta-heading {
      font-size: clamp(1.75rem, 4vw, 2.625rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }

    .hc-service-cta-lead {
      font-size: 18px;
      font-weight: 400;
      color: #fff;
      line-height: 2;
      opacity: .9;
      margin-bottom: 2.5rem;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

    .hc-service-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 1rem 2.5rem;
      background: #fff;
      color: var(--hc-blue);
      border-radius: 999px;
      border: none;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 14px rgba(0,0,0,.15);
      transition: background .2s, box-shadow .2s;
      white-space: nowrap;
    }

    .hc-service-cta-primary:hover {
      background: #f0f0f0;
      color: var(--hc-blue);
    }

    .hc-service-cta-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2.5rem;
      border: 2px solid #fff;
      background: transparent;
      color: #fff;
      border-radius: 999px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }

    .hc-service-cta-secondary:hover {
      background: #fff;
      color: var(--hc-blue);
    }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .hc-service-footer {
      background: var(--hc-dark);
    }

    .hc-service-footer-inner {
      max-width: 1660px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    @media (min-width: 768px)  { .hc-service-footer-inner { padding: 3rem; } }
    @media (min-width: 992px)  { .hc-service-footer-inner { padding: 3rem 5rem; } }

    .hc-service-footer-logo { height: 130px; width: auto; }

    .hc-service-footer-desc {
      font-size: 14px;
      line-height: 26px;
      color: #fff;
      opacity: .9;
      margin: 0;
    }

    .hc-service-footer-heading {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      line-height: 24px;
      margin-bottom: 1rem;
    }

    .hc-service-footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .hc-service-footer-list a {
      font-size: 14px;
      line-height: 20px;
      color: #fff;
      text-decoration: none;
      transition: color .2s;
    }

    .hc-service-footer-list a:hover { color: var(--hc-blue); }

    .hc-service-footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .hc-service-footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
    }

    .hc-service-footer-contact-item i {
      color: #fff;
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .hc-service-footer-contact-item p {
      font-size: 14px;
      line-height: 20px;
      color: #fff;
      margin: 0;
    }

    .hc-service-footer-divider {
      border-top: 1px solid var(--hc-dark-3);
      padding-top: 2rem;
      margin-top: 3.5rem;
    }

    .hc-service-social-link {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--hc-dark-2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      text-decoration: none;
      transition: background .2s;
    }

    .hc-service-social-link:hover {
      background: var(--hc-blue);
      color: #fff;
    }

    .hc-service-copyright {
      font-size: 14px;
      color: #fff;
      line-height: 20px;
      margin: 0;
    }

    .hc-service-footer-policy a {
      font-size: 14px;
      color: #fff;
      text-decoration: none;
      transition: color .2s;
    }

    .hc-service-footer-policy a:hover { color: var(--hc-blue); }

    /* ─── Utility ────────────────────────────────────────────────── */
    .hc-service-px { padding-left: 1.5rem; padding-right: 1.5rem; }
    @media (min-width: 768px) { .hc-service-px { padding-left: 3rem; padding-right: 3rem; } }
    @media (min-width: 992px) { .hc-service-px { padding-left: 5rem; padding-right: 5rem; } } 




     
/* ── Google Font (Inter) ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Global Reset / Base ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #ffffff;
  color: #0a0a0a;
  margin: 0;
  padding: 0;
}

/* ── Brand colour palette ────────────────────────────────── */
:root {
  --hc-blue:        #05549e;
  --hc-blue-dark:   #044080;
  --hc-blue-light:  #e8f3fc;
  --hc-green:       #00a63e;
  --hc-dark-bg:     #101828;
  --hc-border:      #e5e7eb;
  --hc-text-muted:  #6a7282;
  --hc-text-body:   #364153;
  --hc-text-dark:   #1f2937;
  --hc-text-label:  #444;
}

/* ── Navigation ──────────────────────────────────────────── */
.hc-price-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hc-price-nav-inner {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hc-price-nav-logo {
  height: 80px;
  width: auto;
}

.hc-price-nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.hc-price-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.2s;
  position: relative;
}

.hc-price-nav-link:hover {
  color: rgba(255, 255, 255, 0.80);
}

.hc-price-nav-link.active {
  color: #6db3f2;
}

.hc-price-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--hc-blue);
  border-radius: 1px;
}

.hc-price-nav-cta {
  display: none;
  padding: 0.625rem 2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.hc-price-nav-cta:hover {
  background: #ffffff;
  color: #111827;
}

/* Mobile hamburger */
.hc-price-nav-toggle {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hc-price-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}

.hc-price-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.25rem;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
}

.hc-price-mobile-menu.open {
  display: flex;
}

.hc-price-mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hc-price-mobile-cta {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.hc-price-mobile-cta:hover {
  background: #fff;
  color: #111;
}

/* Show desktop nav items from lg up */
@media (min-width: 992px) {
  .hc-price-nav-inner {
    padding: 0.75rem 5rem;
  }
  .hc-price-nav-logo {
    height: 96px;
  }
  .hc-price-nav-links {
    display: flex;
  }
  .hc-price-nav-cta {
    display: inline-block;
  }
  .hc-price-nav-toggle {
    display: none;
  }
}

/* ── Banner Section ──────────────────────────────────────── */
.hc-price-banner {
  position: relative;
  width: 100%;
}

.hc-price-banner-frame {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
}

.hc-price-banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hc-price-banner-img {
  position: absolute;
  width: 100%;
  height: 256%;
  top: -39%;
  left: 0;
  object-fit: cover;
  max-width: none;
}

.hc-price-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 84, 158, 0.96);
}

.hc-price-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hc-price-banner-eyebrow {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 21px;
  margin-bottom: 1rem;
}

.hc-price-banner-heading {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.35;
  text-transform: capitalize;
  max-width: 866px;
  margin: 0;
}

@media (min-width: 768px) {
  .hc-price-banner-frame {
    height: 500px;
  }
  .hc-price-banner-content {
    padding-bottom: 6rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .hc-price-banner-eyebrow {
    font-size: 1rem;
  }
  .hc-price-banner-heading {
    font-size: 1.875rem;
    line-height: 50px;
  }
}

@media (min-width: 992px) {
  .hc-price-banner-frame {
    height: 614px;
  }
  .hc-price-banner-content {
    padding-bottom: 12rem;
    padding-left: 7.4375rem;
    padding-right: 7.4375rem;
  }
  .hc-price-banner-heading {
    font-size: 2.5rem;
    line-height: 60px;
  }
}

/* ── Fee Schedule Cards ──────────────────────────────────── */
.hc-price-cards-section {
  position: relative;
  margin-top: -8rem;
  z-index: 30;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .hc-price-cards-section {
    margin-top: -10rem;
    padding-bottom: 8rem;
  }
}

.hc-price-fee-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 22px 24px 69px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--hc-border);
  overflow: hidden;
}

.hc-price-fee-card-header {
  position: relative;
  height: 9rem;
  overflow: hidden;
  background-image: linear-gradient(166.883deg, rgb(5, 84, 158) 0%, rgba(5, 84, 158, 0.867) 100%);
}

.hc-price-fee-card-circle-1 {
  position: absolute;
  right: 3rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
}

.hc-price-fee-card-circle-2 {
  position: absolute;
  right: 2rem;
  top: 4rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
}

.hc-price-fee-card-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.hc-price-fee-card-icon-wrap {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-price-fee-card-download-btn {
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hc-price-fee-card-download-btn:hover {
  background: rgba(255,255,255,0.90);
}

.hc-price-fee-card-download-btn svg {
  color: var(--hc-blue);
}

.hc-price-fee-card-body {
  padding: 2rem;
}

.hc-price-fee-card-title {
  color: var(--hc-blue);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hc-price-fee-card-notice {
  color: var(--hc-text-muted);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hc-price-fee-card-desc {
  color: var(--hc-text-body);
  font-size: 1.0625rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

.hc-price-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hc-price-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hc-price-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--hc-green);
}

.hc-price-feature-text {
  color: var(--hc-text-label);
  font-size: 0.9375rem;
}

.hc-price-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--hc-blue);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-price-btn-primary:hover {
  background: var(--hc-blue-dark);
  color: #ffffff;
}

/* ── Resource Centre ─────────────────────────────────────── */
.hc-price-resources-section {
  background: #f9f9f7;
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .hc-price-resources-section {
    padding: 5rem 0;
  }
}

.hc-price-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.625rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .hc-price-section-title {
    font-size: 2rem;
  }
}

.hc-price-section-title span {
  color: var(--hc-blue);
}

.hc-price-section-subtitle {
  color: #0a0a0a;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}

.hc-price-resource-card {
  background: #ffffff;
  border: 1px solid var(--hc-border);
  border-radius: 1rem;
  box-shadow: 13px 21px 43.6px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.hc-price-resource-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hc-price-resource-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  min-height: 98px;
}

.hc-price-resource-info {
  flex: 1;
  padding-right: 1rem;
}

.hc-price-badge {
  display: inline-block;
  background: var(--hc-blue-light);
  color: var(--hc-blue);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.hc-price-resource-title {
  color: var(--hc-text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.hc-price-btn-sm-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hc-blue);
  color: #ffffff;
  border: none;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hc-price-btn-sm-primary:hover {
  background: var(--hc-blue-dark);
  color: #ffffff;
}

.hc-price-btn-sm-label-desktop {
  display: none;
}

.hc-price-btn-sm-label-mobile {
  display: inline;
}

@media (min-width: 576px) {
  .hc-price-btn-sm-label-desktop {
    display: inline;
  }
  .hc-price-btn-sm-label-mobile {
    display: none;
  }
}

/* ── CTA Banner ──────────────────────────────────────────── */
.hc-price-cta-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background-image: linear-gradient(166.251deg, rgb(5, 84, 158) 0%, rgb(0, 102, 204) 100%);
}

.hc-price-cta-circle-1 {
  position: absolute;
  right: 0;
  top: -8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hc-price-cta-circle-2 {
  position: absolute;
  left: -6rem;
  bottom: 4rem;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hc-price-cta-inner {
  position: relative;
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .hc-price-cta-inner {
    padding: 4rem 3rem;
  }
}

.hc-price-cta-heading {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .hc-price-cta-heading {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.hc-price-cta-body {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 2rem;
  max-width: 42rem;
  margin: 0 auto 2rem auto;
}

@media (min-width: 992px) {
  .hc-price-cta-body {
    margin-bottom: 2.5rem;
  }
}

.hc-price-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .hc-price-cta-actions {
    flex-direction: row;
  }
}

.hc-price-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  color: var(--hc-blue);
  border: none;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s;
}

.hc-price-btn-white:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  color: var(--hc-blue);
}

.hc-price-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-price-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

/* ── Footer ──────────────────────────────────────────────── */
.hc-price-footer {
  background-color: var(--hc-dark-bg);
}

.hc-price-footer-inner {
  padding: 3rem 1.5rem;
  max-width: 1660px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hc-price-footer-inner {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .hc-price-footer-inner {
    padding: 3rem 5rem;
  }
}

.hc-price-footer-logo {
  height: 130px;
  width: auto;
  margin-bottom: 0.75rem;
}

.hc-price-footer-tagline {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.875rem;
  line-height: 1.625rem;
}

.hc-price-footer-heading {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}

.hc-price-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hc-price-footer-link {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s;
}

.hc-price-footer-link:hover {
  color: var(--hc-blue);
}

.hc-price-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hc-price-footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-price-footer-contact-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25rem;
}

.hc-price-footer-contact-text-sm {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hc-price-footer-divider {
  border-top: 1px solid #364153;
  padding-top: 2rem;
  margin-top: 3.5rem;
}

.hc-price-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hc-price-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hc-price-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hc-price-social-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #1e2939;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.hc-price-social-btn:hover {
  background: var(--hc-blue);
}

.hc-price-copyright {
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hc-price-footer-policy-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hc-price-policy-link {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s;
}

.hc-price-policy-link:hover {
  color: var(--hc-blue);
}
 
.hc-price-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.hc-price-icon-sm {
  width: 1rem;
  height: 1rem;
}

.hc-price-icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.hc-price-icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.hc-price-icon-xl {
  width: 3rem;
  height: 3rem;
}

ul.navbar-nav.gap-4 {
    gap: 40px!important;
}

/* ── Base ──────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #101828;
}

/* ── NAVIGATION ────────────────────────────────────── */
.hc-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

    .hc-navbar .navbar-brand img {
        height: 80px;
        width: auto;
    }

.hc-nav-link {
    color: #fff !important;
    font-size: 1.125rem;
    text-decoration: none;
    position: relative;
    transition: color .2s;
}

    .hc-nav-link:hover {
        color: rgba(255,255,255,.8) !important;
    }

    .hc-nav-link.active {
        color: #6DB3F2 !important;
    }

        .hc-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: #05549E;
        }

.hc-btn-book {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 999px;
    padding: .5rem 2rem;
    font-size: 1rem;
    background: transparent;
    transition: background .2s, color .2s;
}

    .hc-btn-book:hover {
        background: #fff;
        color: #101828;
    }

/* ── HERO ──────────────────────────────────────────── */
.hc-hero {
    position: relative;
    height: 614px;
    overflow: hidden;
}

.hc-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.80), rgba(0,0,0,0));
}

.hc-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 278px;
    padding-left: 119px;
    padding-right: 119px;
}

.hc-hero-eyebrow {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .7px;
    text-transform: uppercase;
    line-height: 21px;
    margin-bottom: 1.5rem;
}

.hc-hero-heading {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    line-height: 60px;
    letter-spacing: .7px;
    text-transform: capitalize;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hc-hero-badge {
    display: inline-block;
    background: rgba(0,0,0,.60);
    border-radius: .5rem;
    padding: 6px 16px;
}

    .hc-hero-badge p {
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        line-height: 24px;
        margin: 0;
    }

/* ── AUTHORITY BLOCK ───────────────────────────────── */
.hc-authority {
    padding: 100px 130px;
    background: #ffffff;
}

.hc-authority-inner {
    max-width: 1660px;
    margin: 0 auto;
}

/* image stack */
.hc-img-stack {
    position: relative;
    width: 597px;
    height: 546px;
    flex-shrink: 0;
}

.hc-img-stack-main {
    position: absolute;
    width: 510px;
    height: 414px;
    border-radius: 33px;
    overflow: hidden;
}

    .hc-img-stack-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hc-img-stack-secondary {
    position: absolute;
    left: 311px;
    top: 298px;
    width: 286px;
    height: 232px;
    border-radius: 33px;
    overflow: hidden;
    border: 6px solid #fff;
}

    .hc-img-stack-secondary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hc-img-stack-badge {
    position: absolute;
    left: 443px;
    top: 28px;
    width: 173px;
    height: 160px;
    border-radius: 26px;
    background: #05549E;
    box-shadow: 0 4px 61px rgba(0,0,0,.10);
    padding: 20px 21px;
}

    .hc-img-stack-badge .hc-badge-num {
        font-size: 55px;
        font-weight: 600;
        color: #fff;
        line-height: 60px;
    }

    .hc-img-stack-badge .hc-badge-label {
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        line-height: 24px;
    }

/* authority text */
.hc-authority-content {
    max-width: 751px;
}

.hc-pill-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid #d1d5dc;
    border-radius: 999px;
    background: #fff;
    padding: 11px 31px;
    margin-bottom: 30px;
}

    .hc-pill-label .hc-pill-dot {
        font-size: 20px;
        color: #05549E;
    }

    .hc-pill-label .hc-pill-text {
        font-size: 16px;
        font-weight: 700;
        color: #05549E;
        text-transform: uppercase;
    }

.hc-blockquote {
    border-left: 7px solid #05549E;
    background: #f9f9f7;
    padding: 10px 10px 10px 40px;
}

    .hc-blockquote p {
        font-size: 16px;
        font-weight: 500;
        color: #101828;
        line-height: 30px;
        margin: 0;
    }

.hc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #05549E;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .75rem 1.875rem;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}

    .hc-btn-primary:hover {
        background: #044a8a;
        color: #fff;
    }

/* ── WHAT MAKES HOMECHEK DIFFERENT ─────────────────── */
.hc-different {
    background: #f9f9f7;
    padding: 100px 0 0;
}

.hc-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #101828;
    line-height: 50px;
    text-align: center;
}

    .hc-section-title span.hc-blue {
        color: #05549E;
    }

.hc-different-panel {
    background: #05549E;
    border-radius: 0;
    overflow: hidden;
    margin-top: 30px;
}

.hc-different-panel-left {
    padding: 64px 90px 50px 190px;
}

.hc-feature-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 79px rgba(255,255,255,.05);
    padding: 15px 30px;
    margin-bottom: 16px;
    min-width: 260px;
}

    .hc-feature-card svg {
        flex-shrink: 0;
    }

    .hc-feature-card span {
        font-size: 17px;
        color: #000;
        line-height: 20px;
    }

.hc-different-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
    max-width: 515px;
}

.hc-different-tagline-small {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 26px;
    max-width: 440px;
}

.hc-different-panel-right {
    overflow: hidden;
}

    .hc-different-panel-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

/* ── MULTI-INSPECTOR ───────────────────────────────── */
.hc-multi {
    position: relative;
    padding: 100px 130px;
    overflow: hidden;
}

.hc-multi-bg {
    position: absolute;
    inset: 0;
    opacity: .15;
    pointer-events: none;
}

    .hc-multi-bg img {
        width: 121%;
        height: 101%;
        object-fit: cover;
        margin-left: -10%;
    }

.hc-client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 28px 41px 94px rgba(0,0,0,.05);
    padding: 29px 10px;
    background: linear-gradient(146.831deg, #05549E 7.58%, #307FC9 79.97%);
    flex-shrink: 0;
}

    .hc-client-card svg {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

.hc-client-card-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 24px;
    text-align: center;
    max-width: 201px;
    margin-top: 11px;
}

.hc-multi-closing {
    font-size: 24px;
    font-weight: 500;
    color: #101828;
    line-height: 36px;
    text-align: center;
    max-width: 669px;
    margin: 0 auto;
}

/* ── SERVICES ──────────────────────────────────────── */
.hc-services {
    padding: 100px 80px;
    background: #fff;
}

.hc-services-title {
    font-size: 40px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 60px;
    text-align: center;
}

    .hc-services-title .hc-blue {
        color: #05549E;
    }

.hc-service-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,.05);
}

    .hc-service-card img {
        width: 100%;
        aspect-ratio: 1480/986;
        object-fit: cover;
        display: block;
    }

.hc-service-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(32,32,32,.90);
    padding: 10px 30px;
    height: 60px;
    display: flex;
    align-items: center;
}

    .hc-service-card-label p {
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        line-height: 28px;
        margin: 0;
        white-space: nowrap;
    }

/* ── WHY STRUCTURE MATTERS ─────────────────────────── */
.hc-structure-blue {
    background: #05549E;
    padding: 100px 130px;
}

.hc-structure-intro {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.hc-structure-sub {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.hc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.hc-step-icon {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hc-step-icon svg {
        width: 60px;
        height: 60px;
    }

.hc-step-label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 30px;
    text-align: center;
    max-width: 229px;
}

.hc-step-connector {
    flex: 1;
    border-top: 2px dashed rgba(255,255,255,.6);
    margin-top: 59px; /* half of icon = align midpoint */
    align-self: flex-start;
}

.hc-structure-bottom {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 50px;
    text-align: center;
    margin-top: 50px;
}

/* ── CLOSING STATEMENT ─────────────────────────────── */
.hc-closing {
    padding: 100px 130px;
    background: #fff;
    text-align: center;
}

.hc-closing-title {
    font-size: 30px;
    font-weight: 600;
    color: #101828;
    line-height: 50px;
}

    .hc-closing-title .hc-blue {
        color: #05549E;
    }

.hc-closing-desc {
    font-size: 20px;
    font-weight: 600;
    color: #101828;
    line-height: 50px;
    max-width: 854px;
    margin: 0 auto;
}

.hc-closing-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #05549E;
    line-height: 50px;
}

/* ── FOOTER ────────────────────────────────────────── */
.hc-footer {
    background: #101828;
}

.hc-footer-inner {
    max-width: 1660px;
    margin: 0 auto;
    padding: 3rem 5rem;
}

.hc-footer-logo img {
    height: 130px;
    width: auto;
}

.hc-footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,.9);
    line-height: 26px;
}

.hc-footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.hc-footer-link {
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: .75rem;
    transition: color .2s;
}

    .hc-footer-link:hover {
        color: #05549E;
    }

.hc-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .75rem;
}

    .hc-footer-contact svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hc-footer-contact p {
        font-size: 14px;
        color: #fff;
        margin: 0;
        line-height: 20px;
    }

.hc-footer-divider {
    border-top: 1px solid #364153;
    margin: 2rem 0 0;
    padding-top: 2rem;
}

.hc-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e2939;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

    .hc-social-btn:hover {
        background: #05549E;
    }

    .hc-social-btn svg {
        width: 20px;
        height: 20px;
    }

.hc-footer-copy {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* ── RESPONSIVE HELPERS ────────────────────────────── */
@media (max-width: 991.98px) {
    .hc-hero-content {
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 200px;
    }

    .hc-hero-heading {
        font-size: 32px;
        line-height: 44px;
    }

    .hc-authority {
        padding: 60px 30px;
    }

    .hc-img-stack {
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .hc-img-stack-main,
    .hc-img-stack-secondary,
    .hc-img-stack-badge {
        position: static;
        width: 100%;
        height: auto;
        left: auto;
        top: auto;
    }

    .hc-img-stack-secondary {
        border: 4px solid #fff;
    }

    .hc-different {
        padding: 60px 20px 0;
    }

    .hc-different-panel-left {
        padding: 40px 20px;
    }

    .hc-multi {
        padding: 60px 20px;
    }

    .hc-services {
        padding: 60px 20px;
    }

    .hc-structure-blue {
        padding: 60px 20px;
    }

    .hc-closing {
        padding: 60px 20px;
    }

    .hc-footer-inner {
        padding: 2rem 1.5rem;
    }

    .hc-step-connector {
        display: none;
    }
}

/* Ensure Pill label stays correct in smaller sizes */
.hc-pill-wrapper {
    display: flex;
    justify-content: center;
}

/* ===================================================
       HC-BK-FORM CUSTOM VARIABLES & BASE
    =================================================== */
:root {
    --hc-bk-primary: #05549E;
    --hc-bk-primary-dark: #044080;
    --hc-bk-primary-deep: #04498E;
    --hc-bk-bg: #f9f9f7;
    --hc-bk-text-heading: #101828;
    --hc-bk-text-muted: #6b7280;
    --hc-bk-border: #e5e7eb;
    --hc-bk-card-radius: 1rem; /* 16px = rounded-2xl */
    --hc-bk-input-height: 48px;
    --hc-bk-banner-h: 614px;
}

/* ===================================================
       PAGE
    =================================================== */
body {
    background-color: var(--hc-bk-bg);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===================================================
       BANNER
    =================================================== */
.hc-bk-form__banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hc-bk-form__banner {
        height: 500px;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__banner {
        height: 300px!important;
    }
}

.hc-bk-form__banner-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .hc-bk-form__banner-img img {
        position: absolute;
        width: 100%;
        height: 256%;
        top: -39%;
        left: 0;
        object-fit: cover;
        max-width: none;
    }

.hc-bk-form__banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 84, 158, 0.96);
}

.hc-bk-form__banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .hc-bk-form__banner-content {
        padding-bottom: 6rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__banner-content {
        padding-bottom:20px!important;
        padding-left: 119px;
        padding-right: 119px;
    }
}

.hc-bk-form__banner-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 866px;
}

@media (min-width: 768px) {
    .hc-bk-form__banner-inner {
        gap: 1.5rem;
    }
}

.hc-bk-form__banner-eyebrow {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    line-height: 21px;
    margin: 0;
}

.hc-bk-form__banner-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    text-transform: capitalize;
    margin: 0;
}

@media (min-width: 768px) {
    .hc-bk-form__banner-title {
        font-size: 1.875rem;
        line-height: 50px;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__banner-title {
        font-size: 40px;
        line-height: 60px;
    }
}

/* ===================================================
       STEPPER
    =================================================== */
.hc-bk-form__stepper {
    background: #fff;
    border-bottom: 1px solid var(--hc-bk-border);
    position: sticky;
    top: 0;
    z-index: 40;
}

.hc-bk-form__stepper-inner {
    padding: 1.5rem 1.5rem;
}

@media (min-width: 768px) {
    .hc-bk-form__stepper-inner {
        padding: 1.5rem 3rem;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__stepper-inner {
        padding: 1.5rem 5rem;
    }
}

.hc-bk-form__steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 56rem;
    margin: 0 auto;
}

.hc-bk-form__step-item {
    display: flex;
    align-items: center;
    flex: 1;
}

.hc-bk-form__step-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hc-bk-form__step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.hc-bk-form__step-circle--active,
.hc-bk-form__step-circle--done {
    background: var(--hc-bk-primary);
    border-color: var(--hc-bk-primary);
}

.hc-bk-form__step-circle span {
    font-weight: 600;
    font-size: 14px;
    color: #9ca3af;
}

.hc-bk-form__step-circle--active span,
.hc-bk-form__step-circle--done span {
    color: #fff;
}

.hc-bk-form__step-label {
    margin-top: 0.5rem;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-align: center;
}

.hc-bk-form__step-label--active {
    color: var(--hc-bk-primary);
}

.hc-bk-form__step-connector {
    height: 2px;
    flex: 1;
    background: #d1d5db;
    max-width: 60px;
    transition: background .2s;
}

.hc-bk-form__step-connector--done {
    background: var(--hc-bk-primary);
}

/* ===================================================
       MAIN CONTENT AREA
    =================================================== */
.hc-bk-form__content {
    padding: 3rem 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .hc-bk-form__content {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__content {
        padding: 3rem 5rem;
    }
}


.hc-bk-form__content-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===================================================
       CARDS
    =================================================== */
.hc-bk-form__card {
    background: #fff;
    border-radius: var(--hc-bk-card-radius);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    margin-bottom: 1rem;
}

.hc-bk-form__card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
    margin-bottom: 1.5rem;
}

.hc-bk-form__card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
}

/* ===================================================
       FORM ELEMENTS
    =================================================== */
.hc-bk-form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--hc-bk-text-heading);
    margin-bottom: 0.5rem;
}

.hc-bk-form__input,
.hc-bk-form__select {
    width: 100%;
    height: var(--hc-bk-input-height);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0 1rem;
    outline: none;
    font-size: 14px;
    transition: border-color .15s;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

    .hc-bk-form__input:focus,
    .hc-bk-form__select:focus {
        border-color: var(--hc-bk-primary);
        box-shadow: 0 0 0 3px rgba(5,84,158,.10);
    }

.hc-bk-form__select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.hc-bk-form__textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    outline: none;
    font-size: 14px;
    transition: border-color .15s;
    resize: vertical;
}

    .hc-bk-form__textarea:focus {
        border-color: var(--hc-bk-primary);
        box-shadow: 0 0 0 3px rgba(5,84,158,.10);
    }

.hc-bk-form__input-wrap {
    position: relative;
}

.hc-bk-form__input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    transition: color .15s;
    font-size: 18px;
}

    .hc-bk-form__input-icon:hover {
        color: var(--hc-bk-primary);
    }

.hc-bk-form__input--has-icon {
    padding-right: 3rem !important;
}

.hc-bk-form__hint {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
    margin-top: 0.25rem;
}

/* ===================================================
       ROLE SELECTOR
    =================================================== */
.hc-bk-form__role-btn {
    border: 2px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    width: 100%;
}

    .hc-bk-form__role-btn:hover {
        border-color: var(--hc-bk-primary);
        background: #eff6ff;
    }

.hc-bk-form__role-btn--active {
    border-color: var(--hc-bk-primary);
    background: var(--hc-bk-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(5,84,158,.35);
    transform: scale(1.05);
}

.hc-bk-form__role-btn i {
    font-size: 1.5rem;
    display: block;
    margin: 0 auto 0.5rem;
    color: var(--hc-bk-primary);
}

.hc-bk-form__role-btn--active i {
    color: #fff;
}

.hc-bk-form__role-btn span {
    font-weight: 600;
    font-size: 14px;
}

/* ===================================================
       ROLE BADGE
    =================================================== */
.hc-bk-form__role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--hc-bk-primary);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

/* ===================================================
       DESIGNATION CHECKBOXES
    =================================================== */
.hc-bk-form__desig-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    transition: background .15s;
}

    .hc-bk-form__desig-label:hover {
        background: #f9fafb;
    }

    .hc-bk-form__desig-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 2px solid var(--hc-bk-primary);
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .hc-bk-form__desig-label span {
        font-size: 14px;
        font-weight: 500;
    }

/* ===================================================
       ADD CLIENT BUTTON
    =================================================== */
.hc-bk-form__add-client-btn {
    width: 100%;
    border: 2px dashed var(--hc-bk-primary);
    background: #eff6ff;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--hc-bk-primary);
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    font-size: 15px;
    margin-bottom: 1.5rem;
}

    .hc-bk-form__add-client-btn:hover {
        background: #dbeafe;
    }

/* ===================================================
       CLIENTS LIST
    =================================================== */
.hc-bk-form__client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.hc-bk-form__client-name {
    font-weight: 500;
    font-size: 14px;
}

.hc-bk-form__client-email {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
}

.hc-bk-form__client-tag {
    font-size: 12px;
    background: var(--hc-bk-primary);
    color: #fff;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

/* ===================================================
       COLLAPSIBLE TOGGLE
    =================================================== */
.hc-bk-form__collapse-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* ===================================================
       SERVICE GROUP
    =================================================== */
.hc-bk-form__svc-group {
    border: 1px solid var(--hc-bk-border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.hc-bk-form__svc-group-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    cursor: pointer;
    transition: background .15s;
}

    .hc-bk-form__svc-group-header:hover {
        background: #f9fafb;
    }

.hc-bk-form__svc-group-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
    margin: 0;
}

.hc-bk-form__svc-group-body {
    border-top: 1px solid var(--hc-bk-border);
}

.hc-bk-form__svc-item {
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
}

    .hc-bk-form__svc-item:last-child {
        border-bottom: 0;
    }

    .hc-bk-form__svc-item:hover {
        background: #f9fafb;
    }

.hc-bk-form__svc-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--hc-bk-text-heading);
}

.hc-bk-form__svc-desc {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
}

.hc-bk-form__svc-price {
    font-weight: 600;
    color: var(--hc-bk-primary);
    font-size: 14px;
}

/* TOGGLE SWITCH */
.hc-bk-form__toggle {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 24px;
    align-items: center;
    border-radius: 9999px;
    background: #d1d5db;
    cursor: pointer;
    border: none;
    transition: background .2s;
    flex-shrink: 0;
}

.hc-bk-form__toggle--on {
    background: var(--hc-bk-primary);
}

.hc-bk-form__toggle__knob {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(0px)!important;
    transition: transform .2s;
    pointer-events: none;
}

.hc-bk-form__toggle--on .hc-bk-form__toggle__knob {
    transform: translateX(17px) !important;
}

/* SUBCATEGORY OPTIONS */
.hc-bk-form__sub-panel {
    background: #f9fafb;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.hc-bk-form__sub-panel-label {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.75rem;
}

.hc-bk-form__sub-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: border-color .15s;
}

    .hc-bk-form__sub-option:last-child {
        margin-bottom: 0;
    }

    .hc-bk-form__sub-option:hover {
        border-color: var(--hc-bk-primary);
    }

    .hc-bk-form__sub-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 2px solid var(--hc-bk-primary);
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
    }

.hc-bk-form__sub-option-name {
    font-size: 13px;
    font-weight: 500;
}

.hc-bk-form__sub-option-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--hc-bk-primary);
}

/* ===================================================
       INFO ALERT
    =================================================== */
.hc-bk-form__info-alert {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

    .hc-bk-form__info-alert i {
        color: var(--hc-bk-primary);
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .hc-bk-form__info-alert p {
        font-size: 14px;
        color: var(--hc-bk-text-heading);
        margin: 0;
    }

/* ===================================================
       TIME SLOTS
    =================================================== */
.hc-bk-form__time-btn {
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all .15s;
    text-align: center;
    width: 100%;
}

    .hc-bk-form__time-btn:hover {
        border-color: var(--hc-bk-primary);
    }

.hc-bk-form__time-btn--active {
    border-color: var(--hc-bk-primary);
    background: #eff6ff;
}

.hc-bk-form__time-btn-main {
    font-weight: 600;
    font-size: 14px;
}

.hc-bk-form__time-btn-dur {
    font-size: 12px;
    color: var(--hc-bk-text-muted);
    margin-top: 4px;
}

.hc-bk-form__time-btn-pop {
    font-size: 12px;
    color: var(--hc-bk-primary);
    font-weight: 500;
    margin-top: 2px;
}

/* ===================================================
       REVIEW SECTION CARDS (step 4)
    =================================================== */
.hc-bk-form__review-card {
    background: #fff;
    border-radius: var(--hc-bk-card-radius);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    margin-bottom: 1.5rem;
}

.hc-bk-form__review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hc-bk-form__review-card-title {
    display: block;
    align-items: center;
    gap: 0.5rem;
    font-size: 18px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
    margin: 0;
}

    .hc-bk-form__review-card-title i {
        color: var(--hc-bk-primary);
    }

.hc-bk-form__edit-btn {
    color: var(--hc-bk-primary);
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: opacity .15s;
}

    .hc-bk-form__edit-btn:hover {
        opacity: 0.75;
    }

/* ===================================================
       ACCESS / ATTENDANCE
    =================================================== */
.hc-bk-form__util-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hc-bk-form__util-check input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 2px solid var(--hc-bk-primary);
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .hc-bk-form__util-check span {
        font-size: 14px;
        font-weight: 500;
    }

/* MULTI-SELECT DROPDOWN */
.hc-bk-form__multi-select {
    position: relative;
}

.hc-bk-form__multi-select-trigger {
    width: 100%;
    min-height: var(--hc-bk-input-height);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0 1rem;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #9ca3af;
    text-align: left;
    transition: border-color .15s;
}

    .hc-bk-form__multi-select-trigger:focus,
    .hc-bk-form__multi-select-trigger.open {
        border-color: var(--hc-bk-primary);
        outline: none;
    }

.hc-bk-form__multi-select-dropdown {
    position: absolute;
    z-index: 10;
    width: 100%;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    padding: 0.5rem;
    display: none;
}

    .hc-bk-form__multi-select-dropdown.show {
        display: block;
    }

.hc-bk-form__multi-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background .1s;
}

    .hc-bk-form__multi-select-option:hover {
        background: #f9fafb;
    }

    .hc-bk-form__multi-select-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
    }

    .hc-bk-form__multi-select-option span {
        font-size: 13px;
    }

/* ATTENDANCE BADGES */
.hc-bk-form__attendance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.hc-bk-form__attendance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: #eff6ff;
    border: 1px solid var(--hc-bk-primary);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hc-bk-primary);
}

.hc-bk-form__attendance-badge-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: var(--hc-bk-primary);
    transition: background .1s;
}

    .hc-bk-form__attendance-badge-remove:hover {
        background: #dbeafe;
    }

/* ===================================================
       NAV BUTTONS
    =================================================== */
.hc-bk-form__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0rem;
}

.hc-bk-form__btn-prev {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--hc-bk-primary);
    background: transparent;
    color: var(--hc-bk-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    font-size: 15px;
}

    .hc-bk-form__btn-prev:hover {
        background: var(--hc-bk-primary);
        color: #fff;
    }

    .hc-bk-form__btn-prev:disabled {
        border-color: #e5e7eb;
        color: #9ca3af;
        cursor: not-allowed;
        background: transparent;
    }

        .hc-bk-form__btn-prev:disabled:hover {
            background: transparent;
            color: #9ca3af;
        }

.hc-bk-form__btn-next {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    background: var(--hc-bk-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
}

    .hc-bk-form__btn-next:hover {
        background: var(--hc-bk-primary-dark);
    }

/* ===================================================
       SUMMARY PANEL (right)
    =================================================== */
.hc-bk-form__summary {
    background: linear-gradient(135deg, var(--hc-bk-primary) 0%, var(--hc-bk-primary-dark) 100%);
    border-radius: var(--hc-bk-card-radius);
    padding: 1.5rem;
    color: #fff;
    position: sticky;
    top: 7.5rem;
    box-shadow: 0 4px 24px rgba(5,84,158,.30);
}

.hc-bk-form__summary-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hc-bk-form__summary-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.2);
    margin-bottom: 1rem;
}

.hc-bk-form__summary-section-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.hc-bk-form__summary-prop-name {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0.25rem;
}

.hc-bk-form__summary-prop-detail {
    font-size: 12px;
    opacity: 0.9;
}

.hc-bk-form__summary-client-name {
    font-weight: 500;
    font-size: 13px;
}

.hc-bk-form__summary-client-email {
    font-size: 12px;
    opacity: 0.8;
}

.hc-bk-form__summary-client-tags {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hc-bk-form__summary-tag {
    font-size: 11px;
    background: rgba(255,255,255,.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.hc-bk-form__summary-svc-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

    .hc-bk-form__summary-svc-row span:last-child {
        font-weight: 600;
    }

/* TOTALS BOX */
.hc-bk-form__totals-box {
    background: rgba(255,255,255,.1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.hc-bk-form__totals-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.hc-bk-form__totals-line--discount {
    color: #86efac;
}

.hc-bk-form__totals-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.2);
    margin: 0.75rem 0;
}

.hc-bk-form__totals-grand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hc-bk-form__totals-grand-label {
    font-size: 16px;
    font-weight: 600;
}

.hc-bk-form__totals-grand-amount {
    font-size: 28px;
    font-weight: 700;
}

.hc-bk-form__totals-count {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* PROGRESS */
.hc-bk-form__progress-wrap {
    margin-bottom: 1rem;
}

.hc-bk-form__progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.hc-bk-form__progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,.2);
    border-radius: 9999px;
    overflow: hidden;
}

.hc-bk-form__progress-bar-fill {
    height: 100%;
    background: #fff;
    border-radius: 9999px;
    transition: width .3s;
}

/* GUARANTEES */
.hc-bk-form__guarantee-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

    .hc-bk-form__guarantee-row i {
        flex-shrink: 0;
        margin-top: 1px;
    }

.hc-bk-form__summary-help {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

    .hc-bk-form__summary-help p {
        font-size: 12px;
        opacity: 0.8;
        margin-bottom: 0.5rem;
    }

    .hc-bk-form__summary-help a {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        display: block;
    }

/* ===================================================
       CONFIRMATION (step 5)
    =================================================== */
.hc-bk-form__confirm {
    background: #fff;
    border-radius: var(--hc-bk-card-radius);
    padding: 3rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    text-align: center;
}

.hc-bk-form__confirm-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #16a34a;
}

.hc-bk-form__confirm-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--hc-bk-text-heading);
    margin-bottom: 1rem;
}

.hc-bk-form__confirm-subtitle {
    font-size: 16px;
    color: var(--hc-bk-text-muted);
    margin-bottom: 2rem;
}

.hc-bk-form__confirm-details {
    background: var(--hc-bk-primary-deep);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #fff;
}

    .hc-bk-form__confirm-details h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #fff;
    }

    .hc-bk-form__confirm-details p {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

.hc-bk-form__next-steps {
    text-align: left;
}

    .hc-bk-form__next-steps h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

.hc-bk-form__next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--hc-bk-text-muted);
    margin-bottom: 0.75rem;
}

    .hc-bk-form__next-step-item i {
        color: var(--hc-bk-primary);
        flex-shrink: 0;
        margin-top: 2px;
    }

.hc-bk-form__confirm-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hc-bk-form__btn-cal {
    padding: 0.75rem 1.5rem;
    background: var(--hc-bk-primary);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.hc-bk-form__btn-view {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--hc-bk-primary);
    border: 2px solid var(--hc-bk-primary);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.hc-bk-form__confirm-contact {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
    margin-top: 2rem;
}

/* ===================================================
       UTILITY
    =================================================== */
.hc-bk-form__d-none {
    display: none !important;
}

.hc-bk-form__chevron {
    transition: transform .2s;
    font-size: 16px;
    color: #6b7280;
}

.hc-bk-form__chevron--open {
    transform: rotate(180deg);
}

/* =============================================================================
   book.css  –  HomeChek Booking Form Styles
   Companion to book.html + js/*.js
   ============================================================================= */

/* =============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================= */
:root {
    --hc-bk-primary: #05549E;
    --hc-bk-primary-dark: #044080;
    --hc-bk-primary-deep: #04498E;
    --hc-bk-bg: #f9f9f7;
    --hc-bk-text-heading: #101828;
    --hc-bk-text-muted: #6b7280;
    --hc-bk-border: #e5e7eb;
    --hc-bk-card-radius: 1rem; /* 16px */
    --hc-bk-input-height: 48px;
    --hc-bk-banner-h: 614px;
}


/* =============================================================================
   PAGE BASE
   ============================================================================= */
body {
    background-color: var(--hc-bk-bg);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}


/* =============================================================================
   BANNER
   ============================================================================= */
.hc-bk-form__banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hc-bk-form__banner {
        height: 500px;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__banner {
        height: var(--hc-bk-banner-h);
    }
}

.hc-bk-form__banner-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

    .hc-bk-form__banner-img img {
        position: absolute;
        width: 100%;
        height: 256%;
        top: -39%;
        left: 0;
        object-fit: cover;
        max-width: none;
    }

.hc-bk-form__banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 84, 158, 0.96);
}

.hc-bk-form__banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .hc-bk-form__banner-content {
        padding-bottom: 6rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__banner-content {
        padding-bottom: 12rem;
        padding-left: 119px;
        padding-right: 119px;
    }
}

.hc-bk-form__banner-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 866px;
}

@media (min-width: 768px) {
    .hc-bk-form__banner-inner {
        gap: 1.5rem;
    }
}

.hc-bk-form__banner-eyebrow {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    line-height: 21px;
    margin: 0;
}

.hc-bk-form__banner-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.4;
    text-transform: capitalize;
    margin: 0;
}

@media (min-width: 768px) {
    .hc-bk-form__banner-title {
        font-size: 1.875rem;
        line-height: 50px;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__banner-title {
        font-size: 40px;
        line-height: 60px;
    }
}


/* =============================================================================
   PROGRESS STEPPER
   ============================================================================= */
.hc-bk-form__stepper {
    background: #fff;
    border-bottom: 1px solid var(--hc-bk-border);
    position: sticky;
    top: 0;
    z-index: 40;
}

.hc-bk-form__stepper-inner {
    padding: 1.5rem 1.5rem;
}

@media (min-width: 768px) {
    .hc-bk-form__stepper-inner {
        padding: 1.5rem 3rem;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__stepper-inner {
        padding: 1.5rem 5rem;
    }
}

.hc-bk-form__steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 56rem;
    margin: 0 auto;
}

.hc-bk-form__step-item {
    display: flex;
    align-items: center;
    flex: 1;
}

.hc-bk-form__step-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.hc-bk-form__step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.hc-bk-form__step-circle--active,
.hc-bk-form__step-circle--done {
    background: var(--hc-bk-primary);
    border-color: var(--hc-bk-primary);
}

.hc-bk-form__step-circle span {
    font-weight: 600;
    font-size: 14px;
    color: #9ca3af;
}

.hc-bk-form__step-circle--active span,
.hc-bk-form__step-circle--done span {
    color: #fff;
}

.hc-bk-form__step-label {
    margin-top: 0.5rem;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-align: center;
}

.hc-bk-form__step-label--active {
    color: var(--hc-bk-primary);
}

.hc-bk-form__step-connector {
    height: 2px;
    flex: 1;
    background: #d1d5db;
    max-width: 60px;
    transition: background .2s;
}

.hc-bk-form__step-connector--done {
    background: var(--hc-bk-primary);
}


/* =============================================================================
   MAIN CONTENT AREA
   ============================================================================= */
.hc-bk-form__content {
    padding: 3rem 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .hc-bk-form__content {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .hc-bk-form__content {
        padding: 3rem 5rem;
    }
}

.hc-bk-form__content-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* =============================================================================
   CARDS
   ============================================================================= */
.hc-bk-form__card {
    background: #fff;
    border-radius: var(--hc-bk-card-radius);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    margin-bottom: 1.5rem;
}

.hc-bk-form__card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
    margin-bottom: 1.5rem;
}

.hc-bk-form__card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
}


/* =============================================================================
   FORM ELEMENTS
   ============================================================================= */
.hc-bk-form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--hc-bk-text-heading);
    margin-bottom: 0.5rem;
}

.hc-bk-form__input,
.hc-bk-form__select {
    width: 100%;
    height: var(--hc-bk-input-height);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0 1rem;
    outline: none;
    font-size: 14px;
    transition: border-color .15s;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

    .hc-bk-form__input:focus,
    .hc-bk-form__select:focus {
        border-color: var(--hc-bk-primary);
        box-shadow: 0 0 0 3px rgba(5, 84, 158, .10);
    }

.hc-bk-form__select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.hc-bk-form__textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    outline: none;
    font-size: 14px;
    transition: border-color .15s;
    resize: vertical;
}

    .hc-bk-form__textarea:focus {
        border-color: var(--hc-bk-primary);
        box-shadow: 0 0 0 3px rgba(5, 84, 158, .10);
    }

/* Input with trailing icon */
.hc-bk-form__input-wrap {
    position: relative;
}

.hc-bk-form__input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    cursor: pointer;
    transition: color .15s;
    font-size: 18px;
}

    .hc-bk-form__input-icon:hover {
        color: var(--hc-bk-primary);
    }

.hc-bk-form__input--has-icon {
    padding-right: 3rem !important;
}

.hc-bk-form__hint {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
    margin-top: 0.25rem;
}


/* =============================================================================
   ROLE SELECTOR BUTTONS
   ============================================================================= */
.hc-bk-form__role-btn {
    border: 2px solid #d1d5db;
    border-radius: 0.75rem;
    padding: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    width: 100%;
}

    .hc-bk-form__role-btn:hover {
        border-color: var(--hc-bk-primary);
        background: #eff6ff;
    }

.hc-bk-form__role-btn--active {
    border-color: var(--hc-bk-primary);
    background: var(--hc-bk-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(5, 84, 158, .35);
    transform: scale(1.05);
}

.hc-bk-form__role-btn i {
    font-size: 1.5rem;
    display: block;
    margin: 0 auto 0.5rem;
    color: var(--hc-bk-primary);
}

.hc-bk-form__role-btn--active i {
    color: #fff;
}

.hc-bk-form__role-btn span {
    font-weight: 600;
    font-size: 14px;
}


/* =============================================================================
   ROLE BADGE
   ============================================================================= */
.hc-bk-form__role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #dbeafe;
    color: var(--hc-bk-primary);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}


/* =============================================================================
   DESIGNATION CHECKBOXES
   ============================================================================= */
.hc-bk-form__desig-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    transition: background .15s;
}

    .hc-bk-form__desig-label:hover {
        background: #f9fafb;
    }

    .hc-bk-form__desig-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 2px solid var(--hc-bk-primary);
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .hc-bk-form__desig-label span {
        font-size: 14px;
        font-weight: 500;
    }


/* =============================================================================
   ADD CLIENT BUTTON
   ============================================================================= */
.hc-bk-form__add-client-btn {
    width: 100%;
    border: 2px dashed var(--hc-bk-primary);
    background: #eff6ff;
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--hc-bk-primary);
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    font-size: 15px;
    margin-bottom: 1.5rem;
}

    .hc-bk-form__add-client-btn:hover {
        background: #dbeafe;
    }


/* =============================================================================
   CLIENTS LIST
   ============================================================================= */
.hc-bk-form__client-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.hc-bk-form__client-name {
    font-weight: 500;
    font-size: 14px;
}

.hc-bk-form__client-email {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
}

.hc-bk-form__client-tag {
    font-size: 12px;
    background: var(--hc-bk-primary);
    color: #fff;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}


/* =============================================================================
   COLLAPSIBLE TOGGLE
   ============================================================================= */
.hc-bk-form__collapse-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}


/* =============================================================================
   SERVICE GROUP ACCORDION
   ============================================================================= */
.hc-bk-form__svc-group {
    border: 1px solid var(--hc-bk-border);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.hc-bk-form__svc-group-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    cursor: pointer;
    transition: background .15s;
}

    .hc-bk-form__svc-group-header:hover {
        background: #f9fafb;
    }

.hc-bk-form__svc-group-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
    margin: 0;
}

.hc-bk-form__svc-group-body {
    border-top: 1px solid var(--hc-bk-border);
}

.hc-bk-form__svc-item {
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
}

    .hc-bk-form__svc-item:last-child {
        border-bottom: 0;
    }

    .hc-bk-form__svc-item:hover {
        background: #f9fafb;
    }

.hc-bk-form__svc-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--hc-bk-text-heading);
}

.hc-bk-form__svc-desc {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
}

.hc-bk-form__svc-price {
    font-weight: 600;
    color: var(--hc-bk-primary);
    font-size: 14px;
}

/* Toggle switch */
.hc-bk-form__toggle {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 24px;
    align-items: center;
    border-radius: 9999px;
    background: #d1d5db;
    cursor: pointer;
    border: none;
    transition: background .2s;
    flex-shrink: 0;
}

.hc-bk-form__toggle--on {
    background: var(--hc-bk-primary);
}

.hc-bk-form__toggle__knob {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(4px);
    transition: transform .2s;
    pointer-events: none;
}

.hc-bk-form__toggle--on .hc-bk-form__toggle__knob {
    transform: translateX(24px);
}

/* Sub-category options panel */
.hc-bk-form__sub-panel {
    background: #f9fafb;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.hc-bk-form__sub-panel-label {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.75rem;
}

.hc-bk-form__sub-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: border-color .15s;
}

    .hc-bk-form__sub-option:last-child {
        margin-bottom: 0;
    }

    .hc-bk-form__sub-option:hover {
        border-color: var(--hc-bk-primary);
    }

    .hc-bk-form__sub-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        border: 2px solid var(--hc-bk-primary);
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
    }

.hc-bk-form__sub-option-name {
    font-size: 13px;
    font-weight: 500;
}

.hc-bk-form__sub-option-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--hc-bk-primary);
}


/* =============================================================================
   INFO ALERT
   ============================================================================= */
.hc-bk-form__info-alert {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

    .hc-bk-form__info-alert i {
        color: var(--hc-bk-primary);
        font-size: 18px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .hc-bk-form__info-alert p {
        font-size: 14px;
        color: var(--hc-bk-text-heading);
        margin: 0;
    }


/* =============================================================================
   TIME SLOTS
   ============================================================================= */
.hc-bk-form__time-btn {
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all .15s;
    text-align: center;
    width: 100%;
}

    .hc-bk-form__time-btn:hover {
        border-color: var(--hc-bk-primary);
    }

.hc-bk-form__time-btn--active {
    border-color: var(--hc-bk-primary);
    background: #eff6ff;
}

.hc-bk-form__time-btn-main {
    font-weight: 600;
    font-size: 14px;
}

.hc-bk-form__time-btn-dur {
    font-size: 12px;
    color: var(--hc-bk-text-muted);
    margin-top: 4px;
}

.hc-bk-form__time-btn-pop {
    font-size: 12px;
    color: var(--hc-bk-primary);
    font-weight: 500;
    margin-top: 2px;
}


/* =============================================================================
   REVIEW CARDS (step 4)
   ============================================================================= */
.hc-bk-form__review-card {
    background: #fff;
    border-radius: var(--hc-bk-card-radius);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    margin-bottom: 1.5rem;
}

.hc-bk-form__review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hc-bk-form__review-card-title {
    display: block;
    align-items: center;
    gap: 0.5rem;
    font-size: 18px;
    font-weight: 600;
    color: var(--hc-bk-text-heading);
    margin: 0;
}

    .hc-bk-form__review-card-title i {
        color: var(--hc-bk-primary);
    }

.hc-bk-form__edit-btn {
    color: var(--hc-bk-primary);
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: opacity .15s;
}

    .hc-bk-form__edit-btn:hover {
        opacity: 0.75;
    }


/* =============================================================================
   ACCESS / ATTENDANCE
   ============================================================================= */
.hc-bk-form__util-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hc-bk-form__util-check input[type="checkbox"] {
        width: 20px;
        height: 20px;
        border: 2px solid var(--hc-bk-primary);
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .hc-bk-form__util-check span {
        font-size: 14px;
        font-weight: 500;
    }

/* Multi-select dropdown */
.hc-bk-form__multi-select {
    position: relative;
}

.hc-bk-form__multi-select-trigger {
    width: 100%;
    min-height: var(--hc-bk-input-height);
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0 1rem;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #9ca3af;
    text-align: left;
    transition: border-color .15s;
}

    .hc-bk-form__multi-select-trigger:focus,
    .hc-bk-form__multi-select-trigger.open {
        border-color: var(--hc-bk-primary);
        outline: none;
    }

.hc-bk-form__multi-select-dropdown {
    position: absolute;
    z-index: 10;
    width: 100%;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
    padding: 0.5rem;
    display: none;
}

    .hc-bk-form__multi-select-dropdown.show {
        display: block;
    }

.hc-bk-form__multi-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background .1s;
}

    .hc-bk-form__multi-select-option:hover {
        background: #f9fafb;
    }

    .hc-bk-form__multi-select-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--hc-bk-primary);
        cursor: pointer;
    }

    .hc-bk-form__multi-select-option span {
        font-size: 13px;
    }

/* Attendance badges */
.hc-bk-form__attendance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.hc-bk-form__attendance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: #eff6ff;
    border: 1px solid var(--hc-bk-primary);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--hc-bk-primary);
}

.hc-bk-form__attendance-badge-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: var(--hc-bk-primary);
    transition: background .1s;
}

    .hc-bk-form__attendance-badge-remove:hover {
        background: #dbeafe;
    }


/* =============================================================================
   NAVIGATION BUTTONS
   ============================================================================= */
.hc-bk-form__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
}

.hc-bk-form__btn-prev {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 2px solid var(--hc-bk-primary);
    background: transparent;
    color: var(--hc-bk-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    font-size: 15px;
}

    .hc-bk-form__btn-prev:hover {
        background: var(--hc-bk-primary);
        color: #fff;
    }

    .hc-bk-form__btn-prev:disabled {
        border-color: #e5e7eb;
        color: #9ca3af;
        cursor: not-allowed;
        background: transparent;
    }

        .hc-bk-form__btn-prev:disabled:hover {
            background: transparent;
            color: #9ca3af;
        }

.hc-bk-form__btn-next {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    background: var(--hc-bk-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
}

    .hc-bk-form__btn-next:hover {
        background: var(--hc-bk-primary-dark);
    }


/* =============================================================================
   SUMMARY PANEL (right column)
   ============================================================================= */
.hc-bk-form__summary {
    background: linear-gradient(135deg, var(--hc-bk-primary) 0%, var(--hc-bk-primary-dark) 100%);
    border-radius: var(--hc-bk-card-radius);
    padding: 1.5rem;
    color: #fff;
    position: sticky;
    top: 7.5rem;
    box-shadow: 0 4px 24px rgba(5, 84, 158, .30);
}

.hc-bk-form__summary-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hc-bk-form__summary-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    margin-bottom: 1rem;
}

.hc-bk-form__summary-section-label {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.hc-bk-form__summary-prop-name {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0.25rem;
}

.hc-bk-form__summary-prop-detail {
    font-size: 12px;
    opacity: 0.9;
}

.hc-bk-form__summary-client-name {
    font-weight: 500;
    font-size: 13px;
}

.hc-bk-form__summary-client-email {
    font-size: 12px;
    opacity: 0.8;
}

.hc-bk-form__summary-client-tags {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hc-bk-form__summary-tag {
    font-size: 11px;
    background: rgba(255, 255, 255, .2);
    padding: 2px 8px;
    border-radius: 4px;
}

.hc-bk-form__summary-svc-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

    .hc-bk-form__summary-svc-row span:last-child {
        font-weight: 600;
    }

/* Totals box */
.hc-bk-form__totals-box {
    background: rgba(255, 255, 255, .1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.hc-bk-form__totals-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.hc-bk-form__totals-line--discount {
    color: #86efac;
}

.hc-bk-form__totals-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin: 0.75rem 0;
}

.hc-bk-form__totals-grand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hc-bk-form__totals-grand-label {
    font-size: 16px;
    font-weight: 600;
}

.hc-bk-form__totals-grand-amount {
    font-size: 28px;
    font-weight: 700;
}

.hc-bk-form__totals-count {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Progress */
.hc-bk-form__progress-wrap {
    margin-bottom: 1rem;
}

.hc-bk-form__progress-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.hc-bk-form__progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, .2);
    border-radius: 9999px;
    overflow: hidden;
}

.hc-bk-form__progress-bar-fill {
    height: 100%;
    background: #fff;
    border-radius: 9999px;
    transition: width .3s;
}

/* Guarantees */
.hc-bk-form__guarantee-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

    .hc-bk-form__guarantee-row i {
        flex-shrink: 0;
        margin-top: 1px;
    }

.hc-bk-form__summary-help {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

    .hc-bk-form__summary-help p {
        font-size: 12px;
        opacity: 0.8;
        margin-bottom: 0.5rem;
    }

    .hc-bk-form__summary-help a {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        display: block;
    }


/* =============================================================================
   CONFIRMATION SCREEN (step 5)
   ============================================================================= */
.hc-bk-form__confirm {
    background: #fff;
    border-radius: var(--hc-bk-card-radius);
    padding: 3rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
    text-align: center;
}

.hc-bk-form__confirm-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: #16a34a;
}

.hc-bk-form__confirm-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--hc-bk-text-heading);
    margin-bottom: 1rem;
}

.hc-bk-form__confirm-subtitle {
    font-size: 16px;
    color: var(--hc-bk-text-muted);
    margin-bottom: 2rem;
}

.hc-bk-form__confirm-details {
    background: var(--hc-bk-primary-deep);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    color: #fff;
}

    .hc-bk-form__confirm-details h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #fff;
    }

    .hc-bk-form__confirm-details p {
        font-size: 14px;
        margin-bottom: 0.5rem;
    }

.hc-bk-form__next-steps {
    text-align: left;
}

    .hc-bk-form__next-steps h4 {
        font-weight: 600;
        margin-bottom: 1rem;
    }

.hc-bk-form__next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--hc-bk-text-muted);
    margin-bottom: 0.75rem;
}

    .hc-bk-form__next-step-item i {
        color: var(--hc-bk-primary);
        flex-shrink: 0;
        margin-top: 2px;
    }

.hc-bk-form__confirm-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hc-bk-form__btn-cal {
    padding: 0.75rem 1.5rem;
    background: var(--hc-bk-primary);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.hc-bk-form__btn-view {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--hc-bk-primary);
    border: 2px solid var(--hc-bk-primary);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.hc-bk-form__confirm-contact {
    font-size: 13px;
    color: var(--hc-bk-text-muted);
    margin-top: 2rem;
}


/* =============================================================================
   UTILITIES
   ============================================================================= */
.hc-bk-form__d-none {
    display: none !important;
}

.hc-bk-form__chevron {
    transition: transform .2s;
    font-size: 16px;
    color: #6b7280;
}

.hc-bk-form__chevron--open {
    transform: rotate(180deg);
}
/* Input validation highlight */
.hc-input-error {
    border: 2px solid #ef4444 !important;
    background: #fff5f5 !important;
}

/* Role button highlight */
.hc-bk-form__role-btn.hc-input-error {
    border: 2px solid #ef4444 !important;
}

/* Select dropdown highlight */
select.hc-input-error {
    border: 2px solid #ef4444 !important;
}
.hc-service-error {
    border: 2px solid #ef4444 !important;
    background: #fff5f5 !important;
    border-radius: 8px;
}
.hc-nav-link {
    position: relative;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

    /* Active tab */
    .hc-nav-link.active-link {
        color: #0d6efd;
        font-weight: 600;
    }

        /* Underline animation */
        .hc-nav-link.active-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 2px;
            background-color: #fff;
            border-radius: 2px;
        }
@media (min-width: 992px) {
    .hc-bk-form__banner-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.hc-bk-form__svc-group { 
    overflow: auto;
    max-height: 300px;
}

.hc-bk-form__svc-item {
    border-bottom: 1px solid #f3f4f6;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
    width: 100%;
}

.hc-bk-form__summary-svc-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 0.5rem;
    gap: 20px;
}

.hc-bk-form__util-check {
    display: flex;
    align-items: center;
    gap: 5px;
}
    .hc-bk-form__util-check input[type="checkbox"] {
        width: 17px;
        height: 17px; 
    }
    .hc-bk-form__util-check span {
        font-size: 13px;
        font-weight: 500;
    }
/* ── Idle / Loading / Error states ───────────────────────── */
.hc-bk-form__slots-idle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    border: 1.5px dashed #dee2e6;
    border-radius: 10px;
    text-align: center;
    background: #f8f9fa;
}

.hc-bk-form__slots-idle-icon {
    font-size: 28px;
    color: #adb5bd;
    margin-bottom: 8px;
}

.hc-bk-form__slots-idle-text {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.hc-bk-form__slots-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 16px;
}

.hc-bk-form__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-top-color: #0d6efd;
    border-radius: 50%;
    animation: hc-spin 0.7s linear infinite;
}

@keyframes hc-spin {
    to {
        transform: rotate(360deg);
    }
}

.hc-bk-form__slots-loading-text {
    font-size: 13px;
    color: #6c757d;
}

.hc-bk-form__slots-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff5f5;
    border: 1px solid #f5c2c7;
    color: #842029;
    font-size: 13px;
}

/* ── Time slot buttons ────────────────────────────────────── */
/* Available (default state your existing styles likely cover) */
.hc-bk-form__time-btn {
    width: 100%;
    padding: 10px 8px;
    border-radius: 8px;
    border: 1.5px solid #dee2e6;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

    .hc-bk-form__time-btn:hover:not(:disabled) {
        border-color: #0d6efd;
        background: #f0f4ff;
    }

    .hc-bk-form__time-btn.active {
        border-color: #0d6efd;
        background: #e8f0fe;
        color: #0d3a91;
    }

.hc-bk-form__time-btn-main {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

.hc-bk-form__time-btn-dur {
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
}

/* Disabled / blocked slots */
.hc-bk-form__time-btn:disabled,
.hc-bk-form__time-btn--blocked {
    background: #f1f3f5;
    border-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 1; /* override Bootstrap disabled opacity so label is still readable */
}

    .hc-bk-form__time-btn:disabled .hc-bk-form__time-btn-dur,
    .hc-bk-form__time-btn--blocked .hc-bk-form__time-btn-dur {
        color: #ced4da;
    }

/* Inspector count badge inside available buttons */
.hc-bk-form__time-btn-avail {
    font-size: 10px;
    color: #198754;
    margin-top: 2px;
    font-weight: 400;
}

/* ── Legend ───────────────────────────────────────────────── */
.hc-bk-form__slots-legend {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    font-size: 12px;
    color: #6c757d;
    align-items: center;
}

.hc-bk-form__legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hc-bk-form__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.hc-bk-form__legend-dot--available {
    background: #fff;
    border: 1.5px solid #dee2e6;
}

.hc-bk-form__legend-dot--blocked {
    background: #f1f3f5;
    border: 1.5px solid #e9ecef;
}



button#btn-discard-client {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}


@media(min-width:768px){
    .hc-service-hero {
        position: relative;
        height: 300px!important;
        overflow: hidden;
    }
}


@media (min-width: 992px) {
    .hc-service-hero-content {
        padding: 0 5rem;
        margin-top: 50px!important;
    }
    .hc-hero-content { 
        padding-top: 170px!important; 
    }
}

@media (min-width: 992px) {
    .hc-hero-content {
        padding-top: 230px !important;
    }
}
.hc-custom-service-cards .icon-card svg {
    width: 50px;
}


@media(min-width: 1199px) and (max-width:1599px) {
    .hc-hero {
        position: relative;
        height: auto;
        overflow: hidden;
    }
}