/* ============================================================
   Hardinge Repair — Main Stylesheet
   hr-style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── Root Variables ── */
:root {
  --hr-black:        #0d0f12;
  --hr-dark:         #141720;
  --hr-charcoal:     #1e2430;
  --hr-steel:        #2c3344;
  --hr-mid:          #3d4a5c;
  --hr-muted:        #6b7a90;
  --hr-light-muted:  #9aaabb;
  --hr-silver:       #c8d3de;
  --hr-white:        #f4f7fb;
  --hr-pure:         #ffffff;

  --hr-orange:       #e8621a;
  --hr-orange-light: #f07a30;
  --hr-orange-glow:  rgba(232, 98, 26, 0.18);
  --hr-teal:         #1a8c8c;
  --hr-teal-light:   #22b0b0;

  --hr-gradient-dark: linear-gradient(135deg, #0d0f12 0%, #1e2430 50%, #141720 100%);
  --hr-gradient-steel: linear-gradient(135deg, #1e2430, #2c3344);
  --hr-gradient-accent: linear-gradient(135deg, #e8621a, #f07a30);

  --hr-font-display: 'Bebas Neue', sans-serif;
  --hr-font-serif:   'DM Serif Display', serif;
  --hr-font-body:    'DM Sans', sans-serif;

  --hr-radius-sm:  4px;
  --hr-radius-md:  10px;
  --hr-radius-lg:  20px;
  --hr-radius-xl:  32px;

  --hr-shadow-sm:  0 2px 12px rgba(0,0,0,0.25);
  --hr-shadow-md:  0 8px 32px rgba(0,0,0,0.35);
  --hr-shadow-lg:  0 20px 60px rgba(0,0,0,0.45);
  --hr-shadow-accent: 0 8px 32px rgba(232,98,26,0.25);

  --hr-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hr-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--hr-font-body);
  background: var(--hr-black);
  color: var(--hr-silver);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hr-font-body);
  font-weight: 600;
  color: var(--hr-white);
  line-height: 1.2;
}

.hr-display-text {
  font-family: var(--hr-font-display);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.hr-serif-text {
  font-family: var(--hr-font-serif);
}

p { margin-bottom: 1rem; color: var(--hr-light-muted); }
p:last-child { margin-bottom: 0; }

/* ── Utility Classes ── */
.hr-text-orange { color: var(--hr-orange); }
.hr-text-teal   { color: var(--hr-teal-light); }
.hr-text-white  { color: var(--hr-white); }
.hr-text-muted  { color: var(--hr-muted); }
.hr-text-center { text-align: center; }
.hr-text-small  { font-size: 0.85rem; }

.hr-bg-dark     { background: var(--hr-dark); }
.hr-bg-charcoal { background: var(--hr-charcoal); }
.hr-bg-steel    { background: var(--hr-steel); }

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

.hr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hr-divider {
  width: 60px;
  height: 3px;
  background: var(--hr-gradient-accent);
  margin: 20px auto 32px;
  border-radius: 2px;
}
.hr-divider-left {
  margin-left: 0;
}

/* ── Buttons ── */
.hr-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--hr-radius-sm);
  font-family: var(--hr-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--hr-transition);
  position: relative;
  overflow: hidden;
}

.hr-btn-primary {
  background: var(--hr-gradient-accent);
  color: var(--hr-pure);
  box-shadow: var(--hr-shadow-accent);
}
.hr-btn-primary:hover {
  color: var(--hr-pure);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,98,26,0.4);
}

.hr-btn-outline {
  background: transparent;
  color: var(--hr-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.hr-btn-outline:hover {
  color: var(--hr-orange);
  border-color: var(--hr-orange);
  background: var(--hr-orange-glow);
}

.hr-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--hr-silver);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.hr-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--hr-white);
}

/* ── Navigation ── */
.hr-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--hr-transition);
}

.hr-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  transition: all var(--hr-transition);
}

.hr-navbar.hr-scrolled {
  background: rgba(13, 15, 18, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hr-navbar.hr-scrolled .hr-navbar-inner {
  padding: 16px 40px;
}

.hr-navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hr-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--hr-gradient-accent);
  border-radius: var(--hr-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hr-font-display);
  font-size: 1.5rem;
  color: var(--hr-pure);
  letter-spacing: 0;
  flex-shrink: 0;
}

.hr-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hr-logo-name {
  font-family: var(--hr-font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--hr-white);
}
.hr-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hr-orange);
}

.hr-navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.hr-navbar-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hr-silver);
  transition: color var(--hr-transition);
  position: relative;
}
.hr-navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--hr-orange);
  transition: width var(--hr-transition);
}
.hr-navbar-links a:hover { color: var(--hr-white); }
.hr-navbar-links a:hover::after { width: 100%; }

.hr-navbar-cta { padding: 10px 22px; font-size: 0.82rem; }

.hr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hr-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--hr-silver);
  border-radius: 2px;
  transition: all var(--hr-transition);
}

.hr-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,15,18,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.hr-mobile-menu.hr-open { display: flex; }
.hr-mobile-menu a {
  font-family: var(--hr-font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: var(--hr-silver);
  transition: color var(--hr-transition);
}
.hr-mobile-menu a:hover { color: var(--hr-orange); }
.hr-mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: var(--hr-silver);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── Hero ── */
.hr-hero-dynamic {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hr-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hr-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hr-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(13,15,18,0.94) 0%,
    rgba(13,15,18,0.75) 55%,
    rgba(13,15,18,0.45) 100%
  );
}

.hr-hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--hr-gradient-accent);
  z-index: 2;
}

.hr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 40px 100px;
}

.hr-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hr-orange);
  margin-bottom: 20px;
}
.hr-hero-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--hr-orange);
}

.hr-hero-title {
  font-family: var(--hr-font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--hr-white);
  margin-bottom: 8px;
}
.hr-hero-title-alt {
  font-family: var(--hr-font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--hr-orange);
  display: block;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hr-hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--hr-light-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hr-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hr-hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 0;
}
.hr-hero-stat {
  padding: 24px 32px;
  background: rgba(30, 36, 48, 0.85);
  backdrop-filter: blur(12px);
  border-top: 3px solid transparent;
  text-align: center;
}
.hr-hero-stat:first-child { border-top-color: var(--hr-orange); }
.hr-hero-stat:nth-child(2) { border-top-color: var(--hr-teal-light); }
.hr-hero-stat:last-child   { border-top-color: var(--hr-silver); }
.hr-hero-stat-num {
  font-family: var(--hr-font-display);
  font-size: 2.2rem;
  color: var(--hr-white);
  line-height: 1;
  display: block;
}
.hr-hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hr-muted);
  display: block;
  margin-top: 4px;
}

/* ── Service Finder ── */
.hr-service-finder {
  background: var(--hr-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hr-finder-header {
  text-align: center;
  margin-bottom: 50px;
}

.hr-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hr-orange);
  margin-bottom: 14px;
}

.hr-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--hr-white);
  margin-bottom: 12px;
}

.hr-section-sub {
  font-size: 1rem;
  color: var(--hr-muted);
  max-width: 540px;
  margin: 0 auto;
}

.hr-symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}

.hr-symptom-btn {
  padding: 16px 12px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius-md);
  color: var(--hr-silver);
  font-family: var(--hr-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all var(--hr-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hr-symptom-btn i {
  font-size: 1.5rem;
  color: var(--hr-muted);
  transition: color var(--hr-transition);
}
.hr-symptom-btn:hover,
.hr-symptom-btn.hr-active {
  border-color: var(--hr-orange);
  background: var(--hr-orange-glow);
  color: var(--hr-white);
}
.hr-symptom-btn:hover i,
.hr-symptom-btn.hr-active i { color: var(--hr-orange); }

.hr-finder-results {
  min-height: 120px;
  display: none;
}
.hr-finder-results.hr-visible { display: block; }

.hr-result-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.hr-result-card {
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--hr-orange);
  border-radius: var(--hr-radius-md);
  padding: 24px;
}
.hr-result-card h4 {
  color: var(--hr-white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.hr-result-card p { font-size: 0.88rem; margin: 0; }
.hr-result-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Maintenance Timeline ── */
.hr-timeline-section { background: var(--hr-charcoal); }

.hr-timeline-wrapper {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}
.hr-timeline-track {
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
}
.hr-timeline-progress {
  height: 100%;
  width: 0%;
  background: var(--hr-gradient-accent);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hr-timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.hr-timeline-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.hr-timeline-item.hr-in-view {
  opacity: 1;
  transform: translateY(0);
}

.hr-timeline-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--hr-steel);
  border: 3px solid var(--hr-mid);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all var(--hr-transition);
}
.hr-timeline-item.hr-done .hr-timeline-dot {
  background: var(--hr-orange);
  border-color: var(--hr-orange-light);
  box-shadow: 0 0 16px var(--hr-orange-glow);
}

.hr-timeline-km {
  font-family: var(--hr-font-display);
  font-size: 1.4rem;
  color: var(--hr-orange);
  display: block;
  margin-bottom: 4px;
}
.hr-timeline-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hr-white);
  display: block;
  margin-bottom: 4px;
}
.hr-timeline-desc {
  font-size: 0.72rem;
  color: var(--hr-muted);
  line-height: 1.4;
}

/* ── Service Cards ── */
.hr-services-section { background: var(--hr-dark); }

.hr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.hr-service-card {
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  transition: all var(--hr-transition);
  display: flex;
  flex-direction: column;
}
.hr-service-card:hover {
  border-color: rgba(232,98,26,0.3);
  transform: translateY(-4px);
  box-shadow: var(--hr-shadow-lg), 0 0 40px rgba(232,98,26,0.08);
}

.hr-service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.hr-service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--hr-transition-slow);
}
.hr-service-card:hover .hr-service-card-img img {
  transform: scale(1.06);
}
.hr-service-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--hr-gradient-accent);
  color: var(--hr-pure);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.hr-service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hr-service-card-icon {
  width: 48px; height: 48px;
  background: var(--hr-orange-glow);
  border-radius: var(--hr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.hr-service-card-icon i { color: var(--hr-orange); font-size: 1.3rem; }

.hr-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.hr-service-card p {
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 20px;
}
.hr-service-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--hr-transition);
}
.hr-service-card-link:hover { gap: 14px; color: var(--hr-orange-light); }

/* ── Trust / Testimonials ── */
.hr-trust-section { background: var(--hr-black); }

.hr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.hr-testimonial-card {
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--hr-transition);
}
.hr-testimonial-card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--hr-shadow-md);
}
.hr-testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--hr-orange);
  font-family: var(--hr-font-serif);
  margin-bottom: 16px;
  display: block;
}
.hr-testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--hr-light-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.hr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hr-testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--hr-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hr-font-display);
  font-size: 1.2rem;
  color: var(--hr-orange);
  flex-shrink: 0;
}
.hr-testimonial-name {
  font-weight: 600;
  color: var(--hr-white);
  font-size: 0.92rem;
  display: block;
}
.hr-testimonial-detail {
  font-size: 0.78rem;
  color: var(--hr-muted);
  display: block;
}
.hr-stars {
  color: var(--hr-orange);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

/* ── Team Section ── */
.hr-team-section { background: var(--hr-dark); }

.hr-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.hr-team-card {
  text-align: center;
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  padding: 40px 28px 32px;
  transition: all var(--hr-transition);
}
.hr-team-card:hover {
  border-color: rgba(232,98,26,0.2);
  transform: translateY(-4px);
}

.hr-team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--hr-steel);
  transition: border-color var(--hr-transition);
}
.hr-team-card:hover .hr-team-photo { border-color: var(--hr-orange); }
.hr-team-photo img { width: 100%; height: 100%; object-fit: cover; }

.hr-team-name {
  font-size: 1.05rem;
  color: var(--hr-white);
  margin-bottom: 4px;
}
.hr-team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-orange);
  display: block;
  margin-bottom: 14px;
}
.hr-team-bio {
  font-size: 0.86rem;
  color: var(--hr-muted);
  line-height: 1.65;
}

/* ── Before / After ── */
.hr-before-after-section { background: var(--hr-charcoal); }

.hr-ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.hr-ba-card {
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  position: relative;
}

.hr-ba-slider {
  position: relative;
  height: 240px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.hr-ba-before,
.hr-ba-after {
  position: absolute;
  inset: 0;
}
.hr-ba-before img,
.hr-ba-after img { width: 100%; height: 100%; object-fit: cover; }
.hr-ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.1s; }
.hr-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--hr-orange);
  z-index: 2;
}
.hr-ba-handle::before,
.hr-ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--hr-orange);
}
.hr-ba-handle::before { top: 50%; transform: translateX(-50%) translateY(-50%); }
.hr-ba-handle::after { display: none; }

.hr-ba-labels {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--hr-dark);
}
.hr-ba-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hr-ba-label-before { color: var(--hr-muted); }
.hr-ba-label-after  { color: var(--hr-orange); }

/* ── Quizzes ── */
.hr-quiz-section { background: var(--hr-black); }

.hr-quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 30px;
}

.hr-quiz-card {
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-xl);
  padding: 40px;
}

.hr-quiz-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}
.hr-quiz-icon {
  width: 56px; height: 56px;
  background: var(--hr-orange-glow);
  border-radius: var(--hr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hr-quiz-icon i { font-size: 1.5rem; color: var(--hr-orange); }
.hr-quiz-header h3 { color: var(--hr-white); font-size: 1.2rem; margin-bottom: 6px; }
.hr-quiz-header p { font-size: 0.85rem; margin: 0; }

.hr-quiz-progress {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 28px;
}
.hr-quiz-progress-bar {
  height: 100%;
  background: var(--hr-gradient-accent);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

.hr-quiz-question {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--hr-white);
  margin-bottom: 18px;
  min-height: 50px;
}

.hr-quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.hr-quiz-option {
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius-md);
  color: var(--hr-silver);
  font-family: var(--hr-font-body);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: all var(--hr-transition);
  width: 100%;
}
.hr-quiz-option:hover,
.hr-quiz-option.hr-selected {
  border-color: var(--hr-orange);
  background: var(--hr-orange-glow);
  color: var(--hr-white);
}

.hr-quiz-actions { display: flex; gap: 12px; align-items: center; }
.hr-quiz-counter { font-size: 0.8rem; color: var(--hr-muted); margin-left: auto; }

.hr-quiz-result {
  display: none;
  background: linear-gradient(135deg, rgba(232,98,26,0.1), rgba(232,98,26,0.05));
  border: 1px solid rgba(232,98,26,0.2);
  border-radius: var(--hr-radius-md);
  padding: 24px;
  text-align: center;
}
.hr-quiz-result.hr-show { display: block; }
.hr-quiz-result-score {
  font-family: var(--hr-font-display);
  font-size: 3rem;
  color: var(--hr-orange);
  display: block;
  margin-bottom: 8px;
}
.hr-quiz-result h4 { color: var(--hr-white); margin-bottom: 8px; }
.hr-quiz-result p { font-size: 0.88rem; margin: 0 0 16px; }

/* ── Articles ── */
.hr-articles-section { background: var(--hr-dark); }

.hr-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.hr-article-card {
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--hr-transition);
}
.hr-article-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: var(--hr-shadow-md);
}

.hr-article-img {
  height: 210px;
  overflow: hidden;
}
.hr-article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--hr-transition-slow);
}
.hr-article-card:hover .hr-article-img img { transform: scale(1.05); }

.hr-article-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hr-article-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hr-teal-light);
  margin-bottom: 10px;
}
.hr-article-body h3 {
  font-size: 1.05rem;
  color: var(--hr-white);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.hr-article-body p { font-size: 0.85rem; margin-bottom: 18px; }
.hr-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  color: var(--hr-muted);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Map CTA ── */
.hr-map-section { background: var(--hr-black); }

.hr-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--hr-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.hr-map-embed {
  height: 420px;
}
.hr-map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.4) invert(0.85) hue-rotate(180deg);
}
.hr-map-info {
  background: var(--hr-charcoal);
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hr-map-info h2 { font-size: 2rem; margin-bottom: 24px; }
.hr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.hr-contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--hr-radius-sm);
  background: var(--hr-orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hr-contact-icon i { color: var(--hr-orange); }
.hr-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hr-muted);
  display: block;
  margin-bottom: 3px;
}
.hr-contact-value {
  font-size: 0.95rem;
  color: var(--hr-white);
}

/* ── CTA Banner ── */
.hr-cta-banner {
  background: linear-gradient(135deg, #1a1000 0%, #2a1200 50%, #1a0800 100%);
  border-top: 3px solid var(--hr-orange);
  border-bottom: 1px solid rgba(232,98,26,0.15);
  position: relative;
  overflow: hidden;
}
.hr-cta-banner::before {
  content: 'HR';
  position: absolute;
  right: -30px; top: -20px;
  font-family: var(--hr-font-display);
  font-size: 12rem;
  color: rgba(232,98,26,0.04);
  line-height: 1;
  pointer-events: none;
}
.hr-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hr-cta-content h2 {
  font-family: var(--hr-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hr-cta-content p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Footer ── */
.hr-footer {
  background: var(--hr-black);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hr-footer-main {
  padding: 70px 0 50px;
}
.hr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.hr-footer-brand p {
  font-size: 0.88rem;
  margin-top: 18px;
  max-width: 280px;
}
.hr-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.hr-footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--hr-radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hr-muted);
  transition: all var(--hr-transition);
}
.hr-footer-social a:hover {
  background: var(--hr-orange-glow);
  border-color: var(--hr-orange);
  color: var(--hr-orange);
}

.hr-footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hr-muted);
  margin-bottom: 20px;
}
.hr-footer-links { list-style: none; }
.hr-footer-links li { margin-bottom: 10px; }
.hr-footer-links a {
  font-size: 0.88rem;
  color: var(--hr-light-muted);
  transition: color var(--hr-transition);
}
.hr-footer-links a:hover { color: var(--hr-white); }

.hr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.hr-footer-copy {
  font-size: 0.82rem;
  color: var(--hr-muted);
}
.hr-footer-legal {
  display: flex;
  gap: 20px;
}
.hr-footer-legal a {
  font-size: 0.78rem;
  color: var(--hr-muted);
}
.hr-footer-legal a:hover { color: var(--hr-silver); }

/* ── Cookie Consent ── */
.hr-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(20, 23, 32, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 10000;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hr-cookie-banner.hr-show { transform: translateY(0); }
.hr-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hr-cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--hr-light-muted);
  min-width: 200px;
}
.hr-cookie-text a { color: var(--hr-orange); }
.hr-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hr-cookie-actions .hr-btn { padding: 10px 20px; font-size: 0.8rem; }

/* ── Page Header ── */
.hr-page-header {
  padding: 160px 0 80px;
  background: var(--hr-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hr-page-header::after {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hr-page-header-content { position: relative; z-index: 1; }
.hr-page-header .hr-section-label { margin-bottom: 12px; }
.hr-page-header h1 {
  font-family: var(--hr-font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.hr-page-header p {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--hr-light-muted);
}

/* ── Forms ── */
.hr-form-group { margin-bottom: 22px; }
.hr-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-muted);
  margin-bottom: 8px;
}
.hr-form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius-md);
  color: var(--hr-white);
  font-family: var(--hr-font-body);
  font-size: 0.95rem;
  transition: all var(--hr-transition);
}
.hr-form-control::placeholder { color: var(--hr-muted); }
.hr-form-control:focus {
  outline: none;
  border-color: var(--hr-orange);
  background: rgba(232,98,26,0.04);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.12);
}
.hr-form-control.hr-error {
  border-color: #e84040;
  box-shadow: 0 0 0 3px rgba(232,64,64,0.12);
}
.hr-error-msg {
  display: block;
  font-size: 0.78rem;
  color: #e84040;
  margin-top: 6px;
  display: none;
}
.hr-error-msg.hr-show { display: block; }

textarea.hr-form-control { resize: vertical; min-height: 140px; }
select.hr-form-control { appearance: none; }

.hr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Hours Table ── */
.hr-hours-table { width: 100%; border-collapse: collapse; }
.hr-hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: var(--hr-light-muted);
}
.hr-hours-table td:first-child { color: var(--hr-white); font-weight: 500; }
.hr-hours-table td.hr-today { color: var(--hr-orange); font-weight: 600; }

/* ── Legal Pages ── */
.hr-legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.hr-legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--hr-white);
}
.hr-legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--hr-silver);
}
.hr-legal-content p,
.hr-legal-content li { color: var(--hr-light-muted); font-size: 0.95rem; }
.hr-legal-content ul,
.hr-legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.hr-legal-content li { margin-bottom: 6px; }
.hr-legal-updated {
  font-size: 0.82rem;
  color: var(--hr-muted);
  margin-bottom: 40px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--hr-orange);
  border-radius: 0 var(--hr-radius-sm) var(--hr-radius-sm) 0;
}

/* ── Article Long-form ── */
.hr-article-full { max-width: 780px; margin: 0 auto; }
.hr-article-full h2 {
  font-size: 1.6rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.hr-article-full h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 10px;
}
.hr-article-full p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.2rem; }
.hr-article-full ul { padding-left: 22px; margin-bottom: 16px; }
.hr-article-full li { margin-bottom: 8px; color: var(--hr-light-muted); font-size: 1rem; line-height: 1.7; }
.hr-article-hero-img {
  border-radius: var(--hr-radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  height: 420px;
}
.hr-article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hr-article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.hr-article-meta-bar span { font-size: 0.82rem; color: var(--hr-muted); }
.hr-article-meta-bar span i { margin-right: 6px; color: var(--hr-orange); }

.hr-article-inline-img {
  border-radius: var(--hr-radius-md);
  overflow: hidden;
  margin: 32px 0;
}
.hr-article-inline-img img { width: 100%; height: 280px; object-fit: cover; }
.hr-article-inline-img figcaption {
  font-size: 0.78rem;
  color: var(--hr-muted);
  text-align: center;
  padding: 10px;
  background: var(--hr-dark);
}

.hr-pullquote {
  border-left: 4px solid var(--hr-orange);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(232,98,26,0.05);
  border-radius: 0 var(--hr-radius-md) var(--hr-radius-md) 0;
  font-family: var(--hr-font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--hr-silver);
  line-height: 1.7;
}

/* ── Services Full Page ── */
.hr-service-full {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hr-service-full:last-child { border-bottom: none; }
.hr-service-full-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.hr-service-full-icon {
  width: 60px; height: 60px;
  background: var(--hr-orange-glow);
  border-radius: var(--hr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hr-service-full-icon i { font-size: 1.6rem; color: var(--hr-orange); }
.hr-service-full-header h2 { font-size: 1.8rem; margin-bottom: 6px; }
.hr-service-process {
  background: var(--hr-charcoal);
  border-radius: var(--hr-radius-md);
  padding: 24px;
  margin-top: 20px;
}
.hr-service-process h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hr-muted);
  margin-bottom: 16px;
}
.hr-process-steps { display: flex; flex-direction: column; gap: 12px; }
.hr-process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hr-process-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hr-orange-glow);
  border: 1.5px solid rgba(232,98,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hr-orange);
  flex-shrink: 0;
}
.hr-process-step p { font-size: 0.9rem; margin: 0; padding-top: 3px; }

/* ── About ── */
.hr-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.hr-value-card {
  background: var(--hr-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--hr-radius-lg);
  padding: 30px 24px;
  border-top: 3px solid var(--hr-orange);
}
.hr-value-card i { font-size: 1.8rem; color: var(--hr-orange); margin-bottom: 14px; display: block; }
.hr-value-card h4 { color: var(--hr-white); margin-bottom: 8px; }
.hr-value-card p { font-size: 0.88rem; margin: 0; }

/* ── Thank You ── */
.hr-thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--hr-dark);
}
.hr-thankyou-icon {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(26, 140, 140, 0.15);
  border: 2px solid var(--hr-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.hr-thankyou-icon i { font-size: 2.5rem; color: var(--hr-teal-light); }
.hr-thankyou-wrap h1 {
  font-family: var(--hr-font-display);
  font-size: 3rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* ── CAPTCHA ── */
.hr-captcha-wrap {
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--hr-radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hr-captcha-question {
  font-weight: 600;
  color: var(--hr-white);
  font-size: 0.95rem;
}
.hr-captcha-input {
  width: 80px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--hr-radius-sm);
  color: var(--hr-white);
  font-family: var(--hr-font-body);
  font-size: 0.95rem;
  text-align: center;
}
.hr-captcha-input:focus {
  outline: none;
  border-color: var(--hr-orange);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .hr-navbar-links,
  .hr-navbar-cta { display: none; }
  .hr-hamburger { display: flex; }

  .hr-hero-stats {
    position: static;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .hr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hr-map-layout { grid-template-columns: 1fr; }
  .hr-map-embed { height: 280px; }

  .hr-quiz-grid { grid-template-columns: 1fr; }
  .hr-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hr-section { padding: 70px 0; }
  .hr-hero-content { padding: 130px 24px 80px; }

  .hr-footer-grid { grid-template-columns: 1fr; }
  .hr-footer-bottom { flex-direction: column; text-align: center; }
  .hr-footer-legal { flex-wrap: wrap; justify-content: center; }

  .hr-navbar-inner { padding: 18px 24px; }
  .hr-navbar.hr-scrolled .hr-navbar-inner { padding: 14px 24px; }

  .hr-timeline-items { gap: 8px; }
  .hr-timeline-km { font-size: 1rem; }
}

/* ════════════════════════════════════════════════
   ADDITIONAL PAGE STYLES
   ════════════════════════════════════════════════ */

/* ── Legal Header ── */
.hr-legal-header {
  background: linear-gradient(rgba(13,15,18,0.85) 0%, rgba(13,15,18,0.98) 100%),
              url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=80') center/cover no-repeat;
  padding: 160px 0 80px;
  text-align: center;
}
.hr-legal-header h1 {
  font-family: var(--hr-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--hr-white);
  letter-spacing: 2px;
  margin: 0;
}

/* ── Legal Content ── */
.hr-legal-content {
  padding: 20px 0 60px;
  color: var(--hr-muted);
  line-height: 1.85;
}
.hr-legal-content h2 {
  font-family: var(--hr-font-serif);
  font-size: 1.6rem;
  color: var(--hr-white);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hr-legal-content h3 {
  font-family: var(--hr-font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--hr-light);
  margin: 1.8rem 0 0.7rem;
}
.hr-legal-content p,
.hr-legal-content li { margin-bottom: 0.9rem; font-size: 0.97rem; }
.hr-legal-content ul { padding-left: 1.5rem; }
.hr-legal-content ul li { margin-bottom: 0.5rem; }
.hr-legal-content a { color: var(--hr-orange); text-decoration: none; }
.hr-legal-content a:hover { text-decoration: underline; }
.hr-legal-content address { font-style: normal; line-height: 2; }
.hr-legal-updated {
  display: inline-block;
  background: rgba(232,98,26,0.12);
  border: 1px solid rgba(232,98,26,0.25);
  color: var(--hr-orange);
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--hr-radius-sm);
  margin-bottom: 2rem;
}

/* ── Legal Table ── */
.hr-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0 2rem;
  font-size: 0.92rem;
}
.hr-legal-table th,
.hr-legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hr-legal-table thead th {
  background: rgba(232,98,26,0.1);
  color: var(--hr-orange);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hr-legal-table th { color: var(--hr-light); font-weight: 600; width: 35%; }
.hr-legal-table td { color: var(--hr-muted); }
.hr-legal-table code {
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--hr-teal);
}

/* ── About Page ── */
.hr-about-img {
  width: 100%;
  border-radius: var(--hr-radius);
  object-fit: cover;
  height: 420px;
}
.hr-value-card {
  background: var(--hr-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--hr-radius);
  padding: 36px 28px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}
.hr-value-card:hover {
  border-color: rgba(232,98,26,0.3);
  transform: translateY(-4px);
}
.hr-value-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(232,98,26,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--hr-orange);
}
.hr-value-card h3 {
  font-family: var(--hr-font-serif);
  font-size: 1.25rem;
  color: var(--hr-white);
  margin-bottom: 12px;
}
.hr-value-card p { color: var(--hr-muted); font-size: 0.95rem; margin: 0; }

/* ── About Timeline ── */
.hr-about-timeline-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 20px;
}
.hr-about-timeline-wrap::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--hr-orange), transparent);
}
.hr-about-milestone {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.hr-about-milestone-year {
  font-family: var(--hr-font-display);
  font-size: 2rem;
  color: var(--hr-orange);
  letter-spacing: 2px;
  min-width: 90px;
  text-align: right;
  padding-top: 4px;
}
.hr-about-milestone-content {
  background: var(--hr-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--hr-radius);
  padding: 24px 28px;
  flex: 1;
  position: relative;
}
.hr-about-milestone-content::before {
  content: '';
  position: absolute;
  left: -34px; top: 18px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--hr-orange);
  border: 2px solid var(--hr-black);
}
.hr-about-milestone-content h4 {
  font-family: var(--hr-font-serif);
  font-size: 1.15rem;
  color: var(--hr-white);
  margin-bottom: 8px;
}
.hr-about-milestone-content p {
  color: var(--hr-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

/* ── Contact Page ── */
.hr-contact-info-block {
  background: var(--hr-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--hr-radius);
  padding: 36px 28px;
  height: 100%;
}
.hr-contact-info-title {
  font-family: var(--hr-font-serif);
  font-size: 1.4rem;
  color: var(--hr-white);
  margin-bottom: 28px;
}
.hr-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.hr-contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(232,98,26,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hr-orange);
  flex-shrink: 0;
}
.hr-contact-info-item strong {
  display: block;
  color: var(--hr-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.hr-contact-info-item p { color: var(--hr-muted); font-size: 0.93rem; margin: 0; }
.hr-contact-info-item a { color: var(--hr-orange); text-decoration: none; }

.hr-contact-hours { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }
.hr-contact-hours h4 {
  font-family: var(--hr-font-body);
  font-size: 1rem;
  color: var(--hr-white);
  font-weight: 600;
  margin-bottom: 14px;
}
.hr-contact-hours h4 i { color: var(--hr-orange); margin-right: 8px; }
.hr-hours-table { width: 100%; font-size: 0.9rem; border-collapse: collapse; }
.hr-hours-table td { padding: 6px 0; color: var(--hr-muted); }
.hr-hours-table td:first-child { color: var(--hr-light); }
.hr-hours-table tr.hr-today-highlight td { color: var(--hr-orange); font-weight: 600; }

.hr-contact-form-wrap {
  background: var(--hr-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--hr-radius);
  padding: 40px 36px;
}
.hr-contact-form-title {
  font-family: var(--hr-font-serif);
  font-size: 1.6rem;
  color: var(--hr-white);
  margin-bottom: 8px;
}
.hr-contact-form-sub { color: var(--hr-muted); font-size: 0.95rem; margin-bottom: 28px; }

.hr-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23999' d='M8 10.5L2.5 5h11L8 10.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
}
.hr-form-select option { background: #1a1d22; color: var(--hr-white); }

.hr-form-disclaimer { font-size: 0.83rem; color: var(--hr-muted); margin-bottom: 16px; }
.hr-form-disclaimer a { color: var(--hr-orange); }

.hr-btn-full { width: 100%; justify-content: center; }

.hr-form-success {
  text-align: center;
  padding: 48px 0;
}
.hr-form-success i { font-size: 3rem; color: var(--hr-teal); margin-bottom: 16px; display: block; }
.hr-form-success h4 { color: var(--hr-white); font-size: 1.4rem; margin-bottom: 8px; }
.hr-form-success p { color: var(--hr-muted); }

/* ── Thank You Page ── */
.hr-thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hr-thankyou-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.hr-thankyou-icon {
  font-size: 4rem;
  color: var(--hr-teal);
  margin-bottom: 24px;
  animation: hr-scale-in 0.5s ease;
}
.hr-thankyou-title {
  font-family: var(--hr-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 2px;
  color: var(--hr-white);
  margin-bottom: 16px;
}
.hr-thankyou-sub {
  color: var(--hr-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hr-thankyou-sub a { color: var(--hr-orange); }
.hr-thankyou-info {
  background: var(--hr-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--hr-radius);
  padding: 28px 32px;
  margin-bottom: 36px;
  text-align: left;
}
.hr-thankyou-info-item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--hr-muted);
  font-size: 0.95rem;
  padding: 8px 0;
}
.hr-thankyou-info-item i { color: var(--hr-orange); width: 18px; }
.hr-thankyou-info-item a { color: var(--hr-orange); text-decoration: none; }
.hr-thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Map Section ── */
.hr-map-section { padding: 60px 0 0; }
.hr-map-embed { width: 100%; }
.hr-map-embed iframe { display: block; }

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .hr-about-timeline-wrap::before { left: 90px; }
  .hr-about-milestone-year { min-width: 70px; font-size: 1.5rem; }
  .hr-about-milestone { gap: 24px; }
  .hr-contact-form-wrap { padding: 28px 20px; }
  .hr-thankyou-actions { flex-direction: column; }
  .hr-legal-content h2 { font-size: 1.3rem; }
}

.logo{
  max-width: 100px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}