/* ============================================
   Howards RV Repair — Main Stylesheet
   Prefix: hr-
   ============================================ */

:root {
  --hr-navy:       #1a2e4a;
  --hr-navy-dark:  #0f1e30;
  --hr-blue:       #2563a8;
  --hr-blue-light: #3b82d4;
  --hr-orange:     #e8621a;
  --hr-orange-lt:  #f07c38;
  --hr-gray-100:   #f4f6f9;
  --hr-gray-200:   #e8edf3;
  --hr-gray-400:   #9aa5b4;
  --hr-gray-600:   #4b5e71;
  --hr-gray-800:   #243040;
  --hr-white:      #ffffff;
  --hr-text:       #2d3e50;
  --hr-font-head:  'Poppins', sans-serif;
  --hr-font-body:  'Source Sans 3', sans-serif;
  --hr-radius:     10px;
  --hr-shadow-sm:  0 2px 8px rgba(26,46,74,.08);
  --hr-shadow-md:  0 6px 24px rgba(26,46,74,.14);
  --hr-shadow-lg:  0 16px 48px rgba(26,46,74,.18);
  --hr-transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--hr-font-body);
  color: var(--hr-text);
  background: var(--hr-white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--hr-blue); text-decoration: none; transition: color var(--hr-transition); }
a:hover { color: var(--hr-orange); }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--hr-font-head);
  color: var(--hr-navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .75rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

.hr-section-label {
  display: inline-block;
  font-family: var(--hr-font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hr-orange);
  margin-bottom: .5rem;
}
.hr-section-title {
  font-family: var(--hr-font-head);
  font-weight: 700;
  color: var(--hr-navy);
  margin-bottom: 1rem;
}
.hr-section-subtitle {
  font-size: 1.05rem;
  color: var(--hr-gray-600);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ---- Utility ---- */
.hr-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hr-section  { padding: 80px 0; }
.hr-bg-light { background: var(--hr-gray-100); }
.hr-bg-navy  { background: var(--hr-navy); color: var(--hr-white); }
.hr-bg-navy h2, .hr-bg-navy h3, .hr-bg-navy h4 { color: var(--hr-white); }
.hr-text-center { text-align: center; }
.hr-mt-2 { margin-top: 1rem; }
.hr-mt-4 { margin-top: 2rem; }
.hr-mb-0 { margin-bottom: 0; }

/* ---- Buttons ---- */
.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--hr-font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--hr-transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.hr-btn-primary {
  background: var(--hr-orange);
  color: var(--hr-white);
  border-color: var(--hr-orange);
}
.hr-btn-primary:hover {
  background: var(--hr-orange-lt);
  border-color: var(--hr-orange-lt);
  color: var(--hr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,98,26,.35);
}
.hr-btn-outline {
  background: transparent;
  color: var(--hr-white);
  border-color: rgba(255,255,255,.6);
}
.hr-btn-outline:hover {
  background: var(--hr-white);
  color: var(--hr-navy);
  border-color: var(--hr-white);
}
.hr-btn-blue {
  background: var(--hr-blue);
  color: var(--hr-white);
  border-color: var(--hr-blue);
}
.hr-btn-blue:hover {
  background: var(--hr-blue-light);
  border-color: var(--hr-blue-light);
  color: var(--hr-white);
  transform: translateY(-2px);
}
.hr-btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.hr-btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ---- Navbar ---- */
.hr-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,30,48,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .9rem 0;
  transition: background var(--hr-transition), padding var(--hr-transition);
}
.hr-navbar.hr-scrolled {
  padding: .6rem 0;
  background: rgba(10,22,36,.97);
  box-shadow: var(--hr-shadow-md);
}
.hr-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hr-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.hr-logo-icon {
  width: 38px; height: 38px;
  background: var(--hr-orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.hr-logo-text {
  font-family: var(--hr-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--hr-white);
  line-height: 1.2;
}
.hr-logo-text span { color: var(--hr-orange); }
.hr-logo-sub { font-size: .65rem; color: var(--hr-gray-400); font-weight: 400; letter-spacing: .06em; display: block; }
.hr-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0; padding: 0;
}
.hr-nav-links a {
  color: rgba(255,255,255,.82);
  font-family: var(--hr-font-head);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--hr-transition);
  position: relative;
}
.hr-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--hr-orange);
  transform: scaleX(0);
  transition: transform var(--hr-transition);
}
.hr-nav-links a:hover,
.hr-nav-links a.hr-active { color: var(--hr-white); }
.hr-nav-links a:hover::after,
.hr-nav-links a.hr-active::after { transform: scaleX(1); }
.hr-nav-cta { margin-left: .5rem; }
.hr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.hr-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--hr-white);
  border-radius: 2px;
  transition: all var(--hr-transition);
}
.hr-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--hr-navy-dark);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
}
.hr-mobile-menu.hr-open { display: flex; }
.hr-mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.hr-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.hr-mobile-menu ul a {
  display: block;
  padding: 1rem 0;
  color: var(--hr-white);
  font-family: var(--hr-font-head);
  font-size: 1.1rem;
  font-weight: 500;
}
.hr-mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 1.5rem;
  cursor: pointer;
}

/* ---- Hero ---- */
.hr-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hr-navy-dark);
}
.hr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.webp');
  background-size: cover;
  background-position: center;
  opacity: .28;
  transition: opacity 1s;
}
.hr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,36,.96) 0%, rgba(26,46,74,.7) 60%, rgba(10,22,36,.5) 100%);
}
.hr-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(232,98,26,.18);
  border: 1px solid rgba(232,98,26,.4);
  color: var(--hr-orange-lt);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--hr-font-head);
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}
.hr-hero-title {
  color: var(--hr-white);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.5rem;
}
.hr-hero-title em {
  font-style: normal;
  color: var(--hr-orange);
}
.hr-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 2.25rem;
}
.hr-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hr-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hr-hero-stat span {
  display: block;
  font-family: var(--hr-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--hr-orange);
}
.hr-hero-stat p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hr-hero-img-col {
  position: relative;
  z-index: 2;
}
.hr-hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--hr-shadow-lg);
}
.hr-hero-img-wrap img { display: block; width: 100%; height: 480px; object-fit: cover; }
.hr-hero-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--hr-white);
  border-radius: 10px;
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--hr-shadow-md);
}
.hr-hero-img-badge i { color: var(--hr-orange); font-size: 1.4rem; }
.hr-hero-img-badge strong { font-family: var(--hr-font-head); font-size: .9rem; color: var(--hr-navy); display: block; }
.hr-hero-img-badge span { font-size: .75rem; color: var(--hr-gray-600); }

/* ---- SVG Divider ---- */
.hr-svg-divider {
  line-height: 0;
  overflow: hidden;
}
.hr-svg-divider svg { display: block; width: 100%; }

/* ---- Trust Bar ---- */
.hr-trust-bar {
  background: var(--hr-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hr-gray-200);
}
.hr-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.hr-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--hr-gray-600);
  font-family: var(--hr-font-head);
}
.hr-trust-item i { color: var(--hr-orange); font-size: 1.1rem; }

/* ---- Service Cards ---- */
.hr-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.hr-service-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  overflow: hidden;
  box-shadow: var(--hr-shadow-sm);
  transition: transform var(--hr-transition), box-shadow var(--hr-transition);
  border: 1px solid var(--hr-gray-200);
}
.hr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hr-shadow-md);
}
.hr-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.hr-service-card-body { padding: 1.5rem; }
.hr-service-card-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,168,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-blue);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.hr-service-card h4 { margin-bottom: .4rem; }
.hr-service-card p { font-size: .9rem; color: var(--hr-gray-600); margin: 0; }
.hr-service-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--hr-gray-200);
}
.hr-service-link {
  color: var(--hr-blue);
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--hr-font-head);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--hr-transition), color var(--hr-transition);
}
.hr-service-link:hover { gap: .6rem; color: var(--hr-orange); }

/* ---- Quiz / Interactive ---- */
.hr-quiz-wrapper {
  background: var(--hr-white);
  border-radius: 16px;
  box-shadow: var(--hr-shadow-md);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.hr-quiz-header {
  background: var(--hr-navy);
  padding: 1.75rem 2rem;
  color: var(--hr-white);
}
.hr-quiz-header h3 { color: var(--hr-white); margin: 0; }
.hr-quiz-header p  { color: rgba(255,255,255,.7); margin: .4rem 0 0; font-size: .9rem; }
.hr-quiz-body { padding: 2rem; }
.hr-quiz-progress {
  height: 6px;
  background: var(--hr-gray-200);
  border-radius: 100px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.hr-quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--hr-blue), var(--hr-orange));
  border-radius: 100px;
  transition: width .5s ease;
}
.hr-quiz-question {
  font-family: var(--hr-font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--hr-navy);
  margin-bottom: 1.25rem;
}
.hr-quiz-options { display: flex; flex-direction: column; gap: .7rem; }
.hr-quiz-option {
  padding: .85rem 1.1rem;
  border: 2px solid var(--hr-gray-200);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--hr-font-head);
  font-size: .92rem;
  transition: all var(--hr-transition);
  background: var(--hr-white);
  text-align: left;
}
.hr-quiz-option:hover { border-color: var(--hr-blue); background: rgba(37,99,168,.04); }
.hr-quiz-option.hr-selected { border-color: var(--hr-orange); background: rgba(232,98,26,.06); color: var(--hr-orange); }
.hr-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}
.hr-quiz-counter { font-size: .82rem; color: var(--hr-gray-400); font-family: var(--hr-font-head); }
.hr-quiz-result {
  text-align: center;
  padding: 1rem;
}
.hr-quiz-result h4 { color: var(--hr-navy); margin-bottom: .5rem; }
.hr-quiz-result p { color: var(--hr-gray-600); }
.hr-quiz-score-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 1rem auto;
  font-family: var(--hr-font-head);
  font-size: 1.5rem;
  font-weight: 700;
}
.hr-score-good  { background: rgba(34,197,94,.12); color: #16a34a; border: 3px solid #16a34a; }
.hr-score-fair  { background: rgba(234,179,8,.12);  color: #b45309; border: 3px solid #ca8a04; }
.hr-score-poor  { background: rgba(239,68,68,.12);  color: #dc2626; border: 3px solid #dc2626; }

/* ---- Cost Estimator ---- */
.hr-estimator {
  background: var(--hr-white);
  border-radius: 16px;
  box-shadow: var(--hr-shadow-md);
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.hr-estimator h3 { margin-bottom: 1.5rem; }
.hr-est-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hr-est-group { display: flex; flex-direction: column; gap: .35rem; }
.hr-est-group label {
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--hr-font-head);
  color: var(--hr-gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hr-est-group select,
.hr-est-group input {
  padding: .7rem 1rem;
  border: 2px solid var(--hr-gray-200);
  border-radius: 8px;
  font-family: var(--hr-font-body);
  font-size: .95rem;
  color: var(--hr-text);
  transition: border-color var(--hr-transition);
  outline: none;
  background: var(--hr-white);
}
.hr-est-group select:focus,
.hr-est-group input:focus { border-color: var(--hr-blue); }
.hr-est-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--hr-gray-100);
  border-radius: 10px;
  border-left: 4px solid var(--hr-orange);
}
.hr-est-result h4 { margin-bottom: .25rem; color: var(--hr-navy); font-size: 1rem; }
.hr-est-amount {
  font-family: var(--hr-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--hr-orange);
}
.hr-est-note { font-size: .8rem; color: var(--hr-gray-400); margin-top: .25rem; margin-bottom: 0; }

/* ---- Checklist ---- */
.hr-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hr-checklist-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  padding: 1.5rem;
  box-shadow: var(--hr-shadow-sm);
  border: 1px solid var(--hr-gray-200);
}
.hr-checklist-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.hr-checklist-card h4 i { color: var(--hr-orange); }
.hr-check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--hr-gray-100);
  cursor: pointer;
  transition: background var(--hr-transition);
  border-radius: 4px;
  padding: .5rem .4rem;
}
.hr-check-item:last-child { border-bottom: none; }
.hr-check-item input[type="checkbox"] { display: none; }
.hr-check-box {
  width: 20px; height: 20px; min-width: 20px;
  border: 2px solid var(--hr-gray-200);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--hr-transition);
  margin-top: 1px;
}
.hr-check-item.hr-checked .hr-check-box {
  background: var(--hr-blue);
  border-color: var(--hr-blue);
  color: white;
}
.hr-check-label {
  font-size: .88rem;
  color: var(--hr-gray-600);
  transition: all var(--hr-transition);
}
.hr-check-item.hr-checked .hr-check-label {
  text-decoration: line-through;
  color: var(--hr-gray-400);
}
.hr-checklist-score {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--hr-font-head);
  font-size: .95rem;
  color: var(--hr-gray-600);
}
.hr-checklist-score strong { color: var(--hr-navy); }

/* ---- Gallery ---- */
.hr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.hr-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--hr-radius);
  cursor: pointer;
}
.hr-gallery-item img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hr-gallery-item:hover img { transform: scale(1.08); }
.hr-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,36,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--hr-transition);
}
.hr-gallery-item:hover .hr-gallery-overlay { opacity: 1; }
.hr-gallery-overlay i { color: white; font-size: 2rem; }

/* ---- Team ---- */
.hr-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.hr-team-member {
  text-align: center;
}
.hr-team-photo-wrap {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 1.25rem;
}
.hr-team-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--hr-gray-200);
  transition: border-color var(--hr-transition);
}
.hr-team-member:hover .hr-team-photo { border-color: var(--hr-orange); }
.hr-team-name { font-family: var(--hr-font-head); font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.hr-team-role { font-size: .82rem; color: var(--hr-orange); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.hr-team-bio { font-size: .85rem; color: var(--hr-gray-600); }

/* ---- Reviews ---- */
.hr-review-slider-wrap { position: relative; overflow: hidden; }
.hr-review-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.hr-review-card {
  min-width: calc(33.333% - 1rem);
  margin-right: 1.5rem;
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  padding: 1.75rem;
  box-shadow: var(--hr-shadow-sm);
  border: 1px solid var(--hr-gray-200);
}
.hr-review-stars { color: #f59e0b; margin-bottom: .75rem; font-size: .9rem; }
.hr-review-text {
  font-size: .92rem;
  color: var(--hr-gray-600);
  font-style: italic;
  margin-bottom: 1rem;
}
.hr-review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hr-review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.hr-review-name { font-family: var(--hr-font-head); font-weight: 600; font-size: .9rem; color: var(--hr-navy); }
.hr-review-location { font-size: .78rem; color: var(--hr-gray-400); }
.hr-slider-controls {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.75rem;
}
.hr-slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--hr-gray-200);
  background: var(--hr-white);
  color: var(--hr-navy);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--hr-transition);
  display: flex; align-items: center; justify-content: center;
}
.hr-slider-btn:hover {
  background: var(--hr-navy);
  border-color: var(--hr-navy);
  color: var(--hr-white);
}
.hr-slider-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.hr-dot {
  width: 8px; 
  max-width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0;
  outline: none;
  border: none;
  background: var(--hr-gray-200);
  cursor: pointer;
  transition: background var(--hr-transition), transform var(--hr-transition);
}
.hr-dot.hr-active { background: var(--hr-orange); }

/* ---- Process Steps ---- */
.hr-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.hr-process-step {
  position: relative;
  padding-left: 0;
}
.hr-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--hr-navy);
  color: var(--hr-white);
  font-family: var(--hr-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.hr-process-step h4 { margin-bottom: .4rem; }
.hr-process-step p { font-size: .88rem; color: var(--hr-gray-600); margin: 0; }

/* ---- Tips Section ---- */
.hr-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.hr-tip-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--hr-orange);
  box-shadow: var(--hr-shadow-sm);
  transition: transform var(--hr-transition);
}
.hr-tip-card:hover { transform: translateY(-4px); }
.hr-tip-card h4 { font-size: .95rem; margin-bottom: .4rem; }
.hr-tip-card p { font-size: .87rem; color: var(--hr-gray-600); margin: 0; }
.hr-tip-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(232,98,26,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-orange);
  margin-bottom: .85rem;
}

/* ---- CTA Banner ---- */
.hr-cta-banner {
  background: linear-gradient(135deg, var(--hr-navy) 0%, var(--hr-blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hr-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/article2.jpg?w=1600&q=80') center/cover;
  opacity: .08;
}
.hr-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hr-cta-inner h2 { color: var(--hr-white); margin-bottom: .75rem; }
.hr-cta-inner p  { color: rgba(255,255,255,.78); max-width: 500px; margin: 0 auto 2rem; }
.hr-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- DIY Quiz ---- */
.hr-diy-quiz {
  background: var(--hr-white);
  border-radius: 16px;
  box-shadow: var(--hr-shadow-md);
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
.hr-diy-header {
  background: linear-gradient(135deg, var(--hr-blue) 0%, var(--hr-navy) 100%);
  padding: 1.75rem 2rem;
  color: var(--hr-white);
}
.hr-diy-header h3 { color: var(--hr-white); margin: 0; }
.hr-diy-header p  { color: rgba(255,255,255,.7); margin: .4rem 0 0; font-size: .9rem; }
.hr-diy-body { padding: 2rem; }
.hr-tf-question {
  padding: 1.1rem;
  border: 2px solid var(--hr-gray-200);
  border-radius: 8px;
  margin-bottom: .75rem;
}
.hr-tf-question p {
  font-family: var(--hr-font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--hr-navy);
  margin-bottom: .75rem;
}
.hr-tf-btns { display: flex; gap: .5rem; }
.hr-tf-btn {
  flex: 1;
  padding: .55rem;
  border: 2px solid var(--hr-gray-200);
  border-radius: 6px;
  font-family: var(--hr-font-head);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--hr-white);
  transition: all var(--hr-transition);
}
.hr-tf-btn.hr-tf-correct { border-color: #16a34a; background: rgba(34,197,94,.08); color: #16a34a; }
.hr-tf-btn.hr-tf-wrong   { border-color: #dc2626; background: rgba(239,68,68,.08); color: #dc2626; }
.hr-tf-btn:not(.hr-tf-correct):not(.hr-tf-wrong):hover { border-color: var(--hr-blue); }

/* ---- Services Detail Page ---- */
.hr-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 60px 0;
}
.hr-service-detail:nth-child(even) .hr-service-detail-img { order: -1; }
.hr-service-detail-img img {
  width: 100%; height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--hr-shadow-md);
}
.hr-service-tag {
  display: inline-block;
  background: rgba(37,99,168,.1);
  color: var(--hr-blue);
  padding: .3rem .85rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--hr-font-head);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
}
.hr-service-list {
  list-style: none;
  padding: 0; margin: 1rem 0;
}
.hr-service-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .92rem;
  color: var(--hr-gray-600);
}
.hr-service-list li i { color: var(--hr-orange); margin-top: 2px; min-width: 14px; }

/* ---- Page Header ---- */
.hr-page-header {
  background: linear-gradient(135deg, var(--hr-navy-dark) 0%, var(--hr-navy) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.hr-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1200&q=80') center/cover;
  opacity: .1;
}
.hr-page-header-inner {
  position: relative;
  z-index: 2;
}
.hr-page-header h1 { color: var(--hr-white); margin-bottom: .5rem; }
.hr-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
}
.hr-breadcrumb a { color: rgba(255,255,255,.6); }
.hr-breadcrumb a:hover { color: var(--hr-white); }
.hr-breadcrumb i { font-size: .7rem; }

/* ---- Article / Blog ---- */
.hr-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.hr-article-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  overflow: hidden;
  box-shadow: var(--hr-shadow-sm);
  border: 1px solid var(--hr-gray-200);
  transition: transform var(--hr-transition), box-shadow var(--hr-transition);
}
.hr-article-card:hover { transform: translateY(-5px); box-shadow: var(--hr-shadow-md); }
.hr-article-thumb {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
}
.hr-article-body { padding: 1.5rem; }
.hr-article-cat {
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--hr-font-head);
  color: var(--hr-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.hr-article-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.hr-article-body p  { font-size: .88rem; color: var(--hr-gray-600); margin-bottom: 1rem; }
.hr-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
  color: var(--hr-gray-400);
  font-family: var(--hr-font-head);
}
.hr-article-meta i { font-size: .75rem; }

/* ---- Article Single ---- */
.hr-article-hero-img {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 2rem;
}
.hr-article-content h2 { margin-top: 2rem; }
.hr-article-content h3 { margin-top: 1.5rem; }
.hr-article-content img {
  width: 100%; height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.hr-article-content blockquote {
  border-left: 4px solid var(--hr-orange);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--hr-gray-100);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--hr-gray-600);
}
.hr-article-sidebar {
  position: sticky;
  top: 100px;
}
.hr-sidebar-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  padding: 1.5rem;
  box-shadow: var(--hr-shadow-sm);
  border: 1px solid var(--hr-gray-200);
  margin-bottom: 1.5rem;
}
.hr-sidebar-card h4 { font-size: 1rem; margin-bottom: 1rem; border-bottom: 2px solid var(--hr-gray-200); padding-bottom: .75rem; }
.hr-toc-list { list-style: none; padding: 0; margin: 0; }
.hr-toc-list li { padding: .35rem 0; border-bottom: 1px solid var(--hr-gray-100); }
.hr-toc-list a { font-size: .88rem; color: var(--hr-gray-600); }
.hr-toc-list a:hover { color: var(--hr-orange); }

/* ---- Contact Form ---- */
.hr-contact-form {
  background: var(--hr-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--hr-shadow-md);
}
.hr-form-group {
  margin-bottom: 1.25rem;
}
.hr-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--hr-font-head);
  color: var(--hr-gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}
.hr-form-group input,
.hr-form-group select,
.hr-form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--hr-gray-200);
  border-radius: 8px;
  font-family: var(--hr-font-body);
  font-size: .95rem;
  color: var(--hr-text);
  transition: border-color var(--hr-transition);
  outline: none;
  background: var(--hr-white);
}
.hr-form-group input:focus,
.hr-form-group select:focus,
.hr-form-group textarea:focus { border-color: var(--hr-blue); }
.hr-form-group textarea { min-height: 130px; resize: vertical; }
.hr-form-error {
  font-size: .78rem;
  color: #dc2626;
  margin-top: .3rem;
  display: none;
}
.hr-form-group.hr-has-error input,
.hr-form-group.hr-has-error textarea { border-color: #dc2626; }
.hr-form-group.hr-has-error .hr-form-error { display: block; }
.hr-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--hr-gray-100);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.hr-captcha-question {
  font-family: var(--hr-font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--hr-navy);
}
.hr-captcha-input {
  width: 70px !important;
  text-align: center;
}
.hr-contact-info-card {
  background: var(--hr-navy);
  border-radius: 16px;
  padding: 2rem;
  color: var(--hr-white);
  height: 100%;
}
.hr-contact-info-card h3 { color: var(--hr-white); }
.hr-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hr-contact-info-item:last-child { border-bottom: none; }
.hr-contact-info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(232,98,26,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-orange);
}
.hr-contact-info-text strong {
  display: block;
  font-family: var(--hr-font-head);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
}
.hr-contact-info-text span { color: var(--hr-white); font-size: .95rem; }
.hr-map-embed {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
  border: none;
}

/* ---- Hours Table ---- */
.hr-hours-table { width: 100%; }
.hr-hours-table td {
  padding: .5rem .75rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--hr-gray-200);
}
.hr-hours-table td:last-child { text-align: right; font-weight: 600; color: var(--hr-navy); }

/* ---- About ---- */
.hr-value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.hr-value-card {
  background: var(--hr-white);
  border-radius: var(--hr-radius);
  padding: 1.75rem;
  box-shadow: var(--hr-shadow-sm);
  border: 1px solid var(--hr-gray-200);
  transition: transform var(--hr-transition);
}
.hr-value-card:hover { transform: translateY(-4px); }
.hr-value-icon {
  width: 52px; height: 52px;
  background: var(--hr-navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-orange);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.hr-value-card h4 { margin-bottom: .4rem; }
.hr-value-card p { font-size: .88rem; color: var(--hr-gray-600); margin: 0; }

/* ---- Footer ---- */
.hr-footer {
  background: var(--hr-navy-dark);
  padding: 70px 0 0;
}
.hr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.hr-footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: .85rem; }
.hr-footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.hr-social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--hr-transition);
}
.hr-social-icon:hover {
  background: var(--hr-orange);
  border-color: var(--hr-orange);
  color: white;
}
.hr-footer-col h5 {
  font-family: var(--hr-font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--hr-white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.hr-footer-links { list-style: none; padding: 0; margin: 0; }
.hr-footer-links li { margin-bottom: .55rem; }
.hr-footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--hr-transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hr-footer-links a:hover { color: var(--hr-orange); }
.hr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.hr-footer-contact-item i { color: var(--hr-orange); margin-top: 3px; }
.hr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.hr-footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; margin: 0; }
.hr-footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hr-footer-legal a { color: rgba(255,255,255,.35); font-size: .8rem; }
.hr-footer-legal a:hover { color: var(--hr-orange); }

/* ---- Cookie Banner ---- */
.hr-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  z-index: 9000;
  background: var(--hr-navy);
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  max-width: 700px;
  width: calc(100% - 3rem);
  box-shadow: var(--hr-shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(255,255,255,.1);
}
.hr-cookie-banner.hr-visible { transform: translateX(-50%) translateY(0); }
.hr-cookie-text {
  flex: 1;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.hr-cookie-text strong { color: var(--hr-white); display: block; margin-bottom: .2rem; }
.hr-cookie-text a { color: var(--hr-orange); }
.hr-cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ---- Thank You Page ---- */
.hr-thankyou-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
}
.hr-thankyou-card {
  text-align: center;
  background: var(--hr-white);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  box-shadow: var(--hr-shadow-lg);
  max-width: 520px;
  width: 100%;
}
.hr-thankyou-icon {
  width: 80px; height: 80px;
  background: rgba(34,197,94,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #16a34a;
}

/* ---- Legal Pages ---- */
.hr-legal-content h2 { margin-top: 2rem; font-size: 1.4rem; }
.hr-legal-content h3 { margin-top: 1.5rem; font-size: 1.1rem; }
.hr-legal-content ul { padding-left: 1.5rem; }
.hr-legal-content ul li { margin-bottom: .4rem; font-size: .95rem; color: var(--hr-gray-600); }
.hr-legal-update {
  display: inline-block;
  background: var(--hr-gray-100);
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  color: var(--hr-gray-600);
  margin-bottom: 1.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hr-footer-grid { grid-template-columns: 1fr 1fr; }
  .hr-service-detail { grid-template-columns: 1fr; }
  .hr-service-detail .hr-service-detail-img { order: 0 !important; }
}
@media (max-width: 768px) {
  .hr-nav-links, .hr-nav-cta { display: none; }
  .hr-hamburger { display: flex; }
  .hr-review-card { min-width: calc(100% - 0px); margin-right: 1.5rem; }
  .hr-hero-content { padding: 100px 0 60px; }
  .hr-hero-img-col { display: none; }
  .hr-hero-stats { gap: 1.5rem; }
  .hr-est-row { grid-template-columns: 1fr; }
  .hr-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hr-footer-bottom { flex-direction: column; text-align: center; }
  .hr-section { padding: 60px 0; }
  .hr-cookie-banner { flex-direction: column; text-align: center; }
  .hr-cookie-actions { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hr-hero-actions { flex-direction: column; }
  .hr-btn { justify-content: center; width: 100%; }
  .hr-checklist-grid { grid-template-columns: 1fr; }
}
