/* ============================================================
   JER REPAIR - Main Stylesheet
   jr-style.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --jr-blue-900: #0a1628;
  --jr-blue-800: #102040;
  --jr-blue-700: #163058;
  --jr-blue-600: #1e4380;
  --jr-blue-500: #2557a7;
  --jr-blue-400: #3b72c4;
  --jr-blue-300: #6496d6;
  --jr-blue-100: #dce8f8;
  --jr-gray-900: #1a1d23;
  --jr-gray-800: #2c3140;
  --jr-gray-700: #434a5c;
  --jr-gray-600: #5c6478;
  --jr-gray-500: #7a8296;
  --jr-gray-400: #a0a8ba;
  --jr-gray-300: #c8cdd8;
  --jr-gray-200: #e2e5ec;
  --jr-gray-100: #f4f5f8;
  --jr-gray-50: #fafbfc;
  --jr-orange-600: #c75a12;
  --jr-orange-500: #e06820;
  --jr-orange-400: #f07d36;
  --jr-orange-300: #f5a26a;
  --jr-orange-100: #fdeee4;
  --jr-white: #ffffff;
  --jr-text-main: #1a1d23;
  --jr-text-muted: #5c6478;
  --jr-text-light: #a0a8ba;
  --jr-border: #e2e5ec;
  --jr-shadow-sm: 0 2px 8px rgba(10,22,40,0.07);
  --jr-shadow-md: 0 4px 20px rgba(10,22,40,0.12);
  --jr-shadow-lg: 0 8px 40px rgba(10,22,40,0.16);
  --jr-shadow-xl: 0 16px 60px rgba(10,22,40,0.2);
  --jr-radius-sm: 6px;
  --jr-radius-md: 12px;
  --jr-radius-lg: 20px;
  --jr-radius-xl: 32px;
  --jr-radius-full: 999px;
  --jr-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --jr-font-heading: 'Poppins', sans-serif;
  --jr-font-body: 'Source Sans 3', sans-serif;
}

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

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

body {
  font-family: var(--jr-font-body);
  color: var(--jr-text-main);
  background: var(--jr-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--jr-blue-500); text-decoration: none; transition: color var(--jr-transition); }
a:hover { color: var(--jr-orange-500); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--jr-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--jr-blue-900);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

section { position: relative; }

/* ---- Utility Classes ---- */
.jr-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.jr-section-pad { padding: 96px 0; }
.jr-section-pad-sm { padding: 64px 0; }
.jr-text-center { text-align: center; }
.jr-text-muted { color: var(--jr-text-muted); }
.jr-mt-auto { margin-top: auto; }

/* ---- Section Labels ---- */
.jr-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jr-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jr-orange-500);
  background: var(--jr-orange-100);
  border-radius: var(--jr-radius-full);
  padding: 6px 16px;
  margin-bottom: 20px;
}

/* ---- Section Headings ---- */
.jr-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 16px;
}

.jr-section-subtitle {
  font-size: 1.05rem;
  color: var(--jr-text-muted);
  max-width: 620px;
  margin-bottom: 48px;
}

.jr-text-center .jr-section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.jr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jr-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--jr-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--jr-transition);
  white-space: nowrap;
  text-decoration: none;
}

.jr-btn-primary {
  background: var(--jr-blue-500);
  color: var(--jr-white);
  border-color: var(--jr-blue-500);
}
.jr-btn-primary:hover {
  background: var(--jr-blue-600);
  border-color: var(--jr-blue-600);
  color: var(--jr-white);
  transform: translateY(-2px);
  box-shadow: var(--jr-shadow-md);
}

.jr-btn-accent {
  background: var(--jr-orange-500);
  color: var(--jr-white);
  border-color: var(--jr-orange-500);
}
.jr-btn-accent:hover {
  background: var(--jr-orange-600);
  border-color: var(--jr-orange-600);
  color: var(--jr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,104,32,0.35);
}

.jr-btn-outline {
  background: transparent;
  color: var(--jr-white);
  border-color: rgba(255,255,255,0.5);
}
.jr-btn-outline:hover {
  background: var(--jr-white);
  color: var(--jr-blue-700);
  border-color: var(--jr-white);
  transform: translateY(-2px);
}

.jr-btn-outline-dark {
  background: transparent;
  color: var(--jr-blue-500);
  border-color: var(--jr-blue-400);
}
.jr-btn-outline-dark:hover {
  background: var(--jr-blue-500);
  color: var(--jr-white);
  transform: translateY(-2px);
}

.jr-btn-sm { font-size: 0.82rem; padding: 10px 20px; }
.jr-btn-lg { font-size: 1rem; padding: 18px 36px; }

/* ---- Navigation ---- */
.jr-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--jr-transition), box-shadow var(--jr-transition), padding var(--jr-transition);
  padding: 20px 0;
}

.jr-navbar.jr-navbar-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--jr-shadow-sm);
  padding: 12px 0;
  backdrop-filter: blur(12px);
}

.jr-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.jr-navbar-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--jr-blue-500);
  border-radius: var(--jr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-white);
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--jr-font-heading);
  transition: background var(--jr-transition);
}

.jr-navbar-logo:hover .jr-navbar-logo-icon { background: var(--jr-orange-500); }

.jr-navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.jr-navbar-brand-name {
  font-family: var(--jr-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--jr-white);
  transition: color var(--jr-transition);
}
.jr-navbar.jr-navbar-scrolled .jr-navbar-brand-name { color: var(--jr-blue-900); }
.jr-navbar-brand-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  transition: color var(--jr-transition);
}
.jr-navbar.jr-navbar-scrolled .jr-navbar-brand-tagline { color: var(--jr-text-muted); }

.jr-navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.jr-navbar-nav .nav-link {
  font-family: var(--jr-font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--jr-radius-sm);
  transition: all var(--jr-transition);
  text-decoration: none;
}
.jr-navbar.jr-navbar-scrolled .jr-navbar-nav .nav-link { color: var(--jr-blue-800); }
.jr-navbar-nav .nav-link:hover {
  color: var(--jr-orange-400);
  background: rgba(255,255,255,0.1);
}
.jr-navbar.jr-navbar-scrolled .jr-navbar-nav .nav-link:hover {
  background: var(--jr-gray-100);
}

.jr-navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jr-navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jr-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--jr-transition);
}
.jr-navbar.jr-navbar-scrolled .jr-navbar-phone { color: var(--jr-blue-800); }
.jr-navbar-phone:hover { color: var(--jr-orange-400) !important; }
.jr-navbar-phone i { font-size: 0.9rem; }

.jr-navbar-toggler {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--jr-radius-sm);
  color: var(--jr-white);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--jr-transition);
}
.jr-navbar.jr-navbar-scrolled .jr-navbar-toggler {
  border-color: var(--jr-gray-300);
  color: var(--jr-blue-800);
}

/* Mobile Nav */
@media (max-width: 991px) {
  .jr-navbar-nav-wrap { display: none; width: 100%; }
  .jr-navbar-nav-wrap.jr-nav-open {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--jr-blue-900);
    padding: 20px;
    box-shadow: var(--jr-shadow-lg);
  }
  .jr-navbar-nav { flex-direction: column; align-items: stretch; gap: 4px; }
  .jr-navbar-nav .nav-link { color: var(--jr-white) !important; padding: 12px 16px; }
  .jr-navbar-toggler { display: block; }
  .jr-navbar-cta .jr-btn { display: none; }
  .jr-navbar-inner { flex-wrap: wrap; }
}

/* ---- Hero Section ---- */
.jr-hero-repair-intro {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--jr-blue-900) 0%, var(--jr-blue-700) 50%, var(--jr-blue-800) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.jr-hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.jr-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.jr-hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--jr-orange-500);
  top: -200px;
  right: -100px;
}

.jr-hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--jr-blue-300);
  bottom: -150px;
  left: -100px;
}

.jr-hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--jr-white);
  top: 40%;
  left: 40%;
}

.jr-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.jr-hero-content-row {
  position: relative;
  z-index: 2;
}

.jr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--jr-radius-full);
  padding: 8px 18px;
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.jr-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--jr-orange-400);
  border-radius: 50%;
  animation: jr-pulse 2s infinite;
}

.jr-hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--jr-white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.jr-hero-headline-accent { color: var(--jr-orange-400); }

.jr-hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.jr-hero-action-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.jr-hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.jr-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.jr-hero-trust-item i {
  color: var(--jr-orange-400);
  font-size: 0.9rem;
}

.jr-hero-image-block {
  position: relative;
  padding: 20px;
}

.jr-hero-main-image {
  border-radius: var(--jr-radius-xl);
  overflow: hidden;
  box-shadow: var(--jr-shadow-xl);
  position: relative;
  z-index: 2;
}

.jr-hero-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.jr-hero-stat-card {
  position: absolute;
  background: var(--jr-white);
  border-radius: var(--jr-radius-md);
  padding: 16px 20px;
  box-shadow: var(--jr-shadow-lg);
  z-index: 3;
}

.jr-hero-stat-card-1 {
  bottom: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.jr-hero-stat-card-2 {
  top: 30px;
  right: -10px;
}

.jr-hero-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--jr-orange-100);
  border-radius: var(--jr-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-orange-500);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.jr-hero-stat-value {
  font-family: var(--jr-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--jr-blue-900);
  line-height: 1;
}

.jr-hero-stat-label {
  font-size: 0.75rem;
  color: var(--jr-text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ---- SVG Divider ---- */
.jr-divider-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

/* ---- Stats Bar ---- */
.jr-stats-bar-section {
  background: var(--jr-blue-900);
  padding: 48px 0;
}

.jr-stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.jr-stats-bar-item {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--jr-transition);
}

.jr-stats-bar-item:last-child { border-right: none; }
.jr-stats-bar-item:hover { background: rgba(255,255,255,0.04); }

.jr-stats-bar-value {
  font-family: var(--jr-font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--jr-white);
  line-height: 1;
  margin-bottom: 6px;
}

.jr-stats-bar-value span { color: var(--jr-orange-400); }

.jr-stats-bar-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Services Grid ---- */
.jr-service-grid-layout {
  background: var(--jr-gray-50);
}

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

.jr-service-card {
  background: var(--jr-white);
  border-radius: var(--jr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--jr-border);
  transition: all var(--jr-transition);
  display: flex;
  flex-direction: column;
}

.jr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--jr-shadow-lg);
  border-color: var(--jr-blue-300);
}

.jr-service-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.jr-service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jr-service-card:hover .jr-service-card-image img { transform: scale(1.06); }

.jr-service-card-icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: var(--jr-blue-500);
  border-radius: var(--jr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-white);
  font-size: 1.2rem;
  box-shadow: var(--jr-shadow-md);
}

.jr-service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jr-service-card-title {
  font-family: var(--jr-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 10px;
}

.jr-service-card-desc {
  font-size: 0.9rem;
  color: var(--jr-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.jr-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--jr-blue-500);
  font-family: var(--jr-font-heading);
  text-decoration: none;
  transition: all var(--jr-transition);
}

.jr-service-card-link:hover { color: var(--jr-orange-500); gap: 10px; }

/* ---- Before After Gallery ---- */
.jr-before-after-gallery {
  background: var(--jr-blue-900);
  color: var(--jr-white);
}

.jr-before-after-slider-wrap {
  position: relative;
  border-radius: var(--jr-radius-xl);
  overflow: hidden;
  box-shadow: var(--jr-shadow-xl);
  max-width: 800px;
  margin: 0 auto;
}

.jr-ba-slide { display: none; }
.jr-ba-slide.jr-ba-active { display: block; }

.jr-ba-image-compare {
  position: relative;
  overflow: hidden;
  height: 420px;
  user-select: none;
}

.jr-ba-image-compare img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-ba-image-after { clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }

.jr-ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--jr-white);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: ew-resize;
}

.jr-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--jr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-blue-600);
  font-size: 1rem;
  box-shadow: var(--jr-shadow-md);
}

.jr-ba-label {
  position: absolute;
  top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--jr-radius-full);
}

.jr-ba-label-before { left: 16px; background: var(--jr-gray-800); color: var(--jr-white); }
.jr-ba-label-after { right: 16px; background: var(--jr-blue-500); color: var(--jr-white); }

.jr-ba-caption {
  background: rgba(10,22,40,0.85);
  padding: 16px 24px;
  text-align: center;
}

.jr-ba-caption p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.jr-ba-nav-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.jr-ba-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--jr-white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--jr-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jr-ba-nav-btn:hover { background: var(--jr-orange-500); border-color: var(--jr-orange-500); }

/* ---- Quiz Block ---- */
.jr-home-quiz-block {
  background: var(--jr-white);
}

.jr-quiz-card {
  background: var(--jr-blue-900);
  border-radius: var(--jr-radius-xl);
  padding: 48px;
  color: var(--jr-white);
}

.jr-quiz-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--jr-white);
  margin-bottom: 8px;
}

.jr-quiz-subtitle {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.jr-quiz-question-block { display: none; }
.jr-quiz-question-block.jr-quiz-active { display: block; }

.jr-quiz-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--jr-radius-full);
  margin-bottom: 32px;
  overflow: hidden;
}

.jr-quiz-progress-fill {
  height: 100%;
  background: var(--jr-orange-400);
  border-radius: var(--jr-radius-full);
  transition: width 0.5s ease;
}

.jr-quiz-q-text {
  font-family: var(--jr-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--jr-white);
  margin-bottom: 20px;
}

.jr-quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.jr-quiz-option {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--jr-radius-md);
  padding: 14px 18px;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: all var(--jr-transition);
  text-align: left;
  font-family: var(--jr-font-body);
}

.jr-quiz-option:hover { background: rgba(255,255,255,0.14); border-color: var(--jr-orange-400); }
.jr-quiz-option.jr-quiz-selected { background: var(--jr-orange-500); border-color: var(--jr-orange-500); color: var(--jr-white); }

.jr-quiz-nav { display: flex; gap: 12px; align-items: center; }
.jr-quiz-step-count { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-left: auto; }

.jr-quiz-result-block {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.jr-quiz-result-block.jr-quiz-active { display: block; }

.jr-quiz-result-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--jr-orange-400);
  line-height: 1;
  margin-bottom: 12px;
}

.jr-quiz-result-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--jr-white);
  margin-bottom: 12px;
}

.jr-quiz-result-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto 28px;
}

/* ---- Review Slider ---- */
.jr-review-slider-section {
  background: var(--jr-gray-50);
}

.jr-review-slider-wrap {
  position: relative;
  overflow: hidden;
}

.jr-review-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jr-review-card {
  min-width: 100%;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .jr-review-card { min-width: 50%; }
}

@media (min-width: 1024px) {
  .jr-review-card { min-width: 33.33%; }
}

.jr-review-card-inner {
  background: var(--jr-white);
  border-radius: var(--jr-radius-lg);
  padding: 32px;
  border: 1px solid var(--jr-border);
  height: 100%;
  transition: all var(--jr-transition);
}

.jr-review-card-inner:hover {
  box-shadow: var(--jr-shadow-md);
  border-color: var(--jr-blue-200);
}

.jr-review-stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.jr-review-text {
  font-size: 0.95rem;
  color: var(--jr-text-main);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.jr-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jr-review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--jr-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jr-blue-600);
  flex-shrink: 0;
}

.jr-review-author-name {
  font-family: var(--jr-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 2px;
}

.jr-review-author-location {
  font-size: 0.78rem;
  color: var(--jr-text-muted);
}

.jr-review-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.jr-review-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--jr-gray-300);
  background: var(--jr-white);
  color: var(--jr-blue-600);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--jr-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jr-review-nav-btn:hover { background: var(--jr-blue-500); border-color: var(--jr-blue-500); color: var(--jr-white); }

.jr-review-slider-dots {
  display: flex;
  gap: 8px;
}

.jr-review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jr-gray-300);
  cursor: pointer;
  transition: all var(--jr-transition);
}

.jr-review-dot.jr-dot-active { background: var(--jr-blue-500); width: 24px; border-radius: 4px; }

/* ---- Team Cards ---- */
.jr-team-section { background: var(--jr-white); }

.jr-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jr-team-card {
  text-align: center;
  transition: all var(--jr-transition);
}

.jr-team-card:hover { transform: translateY(-4px); }

.jr-team-card-photo {
  width: 100%;
  height: 260px;
  border-radius: var(--jr-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--jr-gray-100);
  position: relative;
}

.jr-team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.jr-team-card:hover .jr-team-card-photo img { transform: scale(1.04); }

.jr-team-card-name {
  font-family: var(--jr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 4px;
}

.jr-team-card-role {
  font-size: 0.8rem;
  color: var(--jr-orange-500);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.jr-team-card-bio {
  font-size: 0.85rem;
  color: var(--jr-text-muted);
  line-height: 1.6;
}

/* ---- Process Timeline ---- */
.jr-maintenance-timeline {
  background: var(--jr-blue-900);
  color: var(--jr-white);
}

.jr-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.jr-process-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}

.jr-process-step {
  text-align: center;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

.jr-process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--jr-blue-700);
  border: 3px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--jr-font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--jr-orange-400);
  transition: all var(--jr-transition);
}

.jr-process-step:hover .jr-process-step-number {
  background: var(--jr-orange-500);
  color: var(--jr-white);
  border-color: var(--jr-orange-400);
  transform: scale(1.1);
}

.jr-process-step-icon {
  font-size: 1.6rem;
  color: var(--jr-orange-300);
  margin-bottom: 16px;
  display: block;
}

.jr-process-step-title {
  font-family: var(--jr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jr-white);
  margin-bottom: 8px;
}

.jr-process-step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ---- Tips Section ---- */
.jr-tips-section { background: var(--jr-gray-50); }

.jr-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jr-tip-card {
  background: var(--jr-white);
  border-radius: var(--jr-radius-lg);
  padding: 28px;
  border: 1px solid var(--jr-border);
  transition: all var(--jr-transition);
  display: flex;
  gap: 16px;
}

.jr-tip-card:hover { box-shadow: var(--jr-shadow-md); border-color: var(--jr-blue-300); }

.jr-tip-card-icon {
  width: 48px;
  height: 48px;
  background: var(--jr-blue-100);
  border-radius: var(--jr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-blue-500);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.jr-tip-card-title {
  font-family: var(--jr-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 6px;
}

.jr-tip-card-desc {
  font-size: 0.85rem;
  color: var(--jr-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---- Articles Section ---- */
.jr-articles-section { background: var(--jr-white); }

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

.jr-article-card {
  border-radius: var(--jr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--jr-border);
  background: var(--jr-white);
  transition: all var(--jr-transition);
  display: flex;
  flex-direction: column;
}

.jr-article-card:hover { transform: translateY(-4px); box-shadow: var(--jr-shadow-md); }

.jr-article-card-image {
  height: 200px;
  overflow: hidden;
}

.jr-article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jr-article-card:hover .jr-article-card-image img { transform: scale(1.05); }

.jr-article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jr-article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.jr-article-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jr-orange-500);
  background: var(--jr-orange-100);
  padding: 4px 10px;
  border-radius: var(--jr-radius-full);
}

.jr-article-card-date {
  font-size: 0.78rem;
  color: var(--jr-text-muted);
}

.jr-article-card-title {
  font-family: var(--jr-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 10px;
  line-height: 1.4;
}

.jr-article-card-excerpt {
  font-size: 0.88rem;
  color: var(--jr-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.jr-article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--jr-blue-500);
  font-family: var(--jr-font-heading);
  text-decoration: none;
  transition: all var(--jr-transition);
  margin-top: auto;
}

.jr-article-read-more:hover { color: var(--jr-orange-500); gap: 10px; }

/* ---- CTA Section ---- */
.jr-cta-section {
  background: linear-gradient(135deg, var(--jr-orange-600) 0%, var(--jr-orange-500) 100%);
  position: relative;
  overflow: hidden;
}

.jr-cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.jr-cta-content { position: relative; z-index: 2; }

.jr-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--jr-white);
  margin-bottom: 16px;
}

.jr-cta-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
}

.jr-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.jr-cta-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--jr-white);
  font-family: var(--jr-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}

/* ---- Footer ---- */
.jr-footer {
  background: var(--jr-blue-900);
  color: rgba(255,255,255,0.65);
}

.jr-footer-main { padding: 72px 0 48px; }

.jr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.jr-footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.55);
}

.jr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.jr-footer-contact-item i {
  color: var(--jr-orange-400);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.jr-footer-contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--jr-transition);
}

.jr-footer-contact-item a:hover { color: var(--jr-orange-400); }

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

.jr-footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jr-footer-link-list li { margin-bottom: 10px; }

.jr-footer-link-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all var(--jr-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.jr-footer-link-list a:hover { color: var(--jr-orange-400); padding-left: 4px; }

.jr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.jr-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.jr-footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.jr-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.jr-footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--jr-transition);
}

.jr-footer-bottom-links a:hover { color: var(--jr-orange-400); }

/* ---- Page Hero (Inner Pages) ---- */
.jr-page-hero-inner {
  background: linear-gradient(135deg, var(--jr-blue-900) 0%, var(--jr-blue-700) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.jr-page-hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.jr-page-hero-content { position: relative; z-index: 2; }

.jr-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.jr-page-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.jr-page-breadcrumb a:hover { color: var(--jr-orange-400); }
.jr-page-breadcrumb i { font-size: 0.65rem; }

.jr-page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--jr-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.jr-page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.8;
}

/* ---- Service Detail Pages ---- */
.jr-service-detail-intro { background: var(--jr-white); }

.jr-service-intro-image {
  border-radius: var(--jr-radius-lg);
  overflow: hidden;
  box-shadow: var(--jr-shadow-lg);
}

.jr-service-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.jr-service-issues-list {
  list-style: none;
  padding: 0;
}

.jr-service-issues-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--jr-border);
  font-size: 0.95rem;
  color: var(--jr-text-main);
}

.jr-service-issues-list li:last-child { border-bottom: none; }
.jr-service-issues-list li i { color: var(--jr-orange-500); margin-top: 3px; flex-shrink: 0; }

/* ---- FAQ Accordion ---- */
.jr-faq-section { background: var(--jr-gray-50); }

.jr-faq-accordion { max-width: 800px; margin: 0 auto; }

.jr-faq-item {
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius-md);
  background: var(--jr-white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--jr-transition);
}

.jr-faq-item.jr-faq-open { box-shadow: var(--jr-shadow-sm); border-color: var(--jr-blue-300); }

.jr-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--jr-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--jr-blue-900);
  user-select: none;
  transition: background var(--jr-transition);
}

.jr-faq-question:hover { background: var(--jr-gray-50); }
.jr-faq-item.jr-faq-open .jr-faq-question { background: var(--jr-blue-900); color: var(--jr-white); }

.jr-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--jr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--jr-blue-600);
  flex-shrink: 0;
  transition: all var(--jr-transition);
}

.jr-faq-item.jr-faq-open .jr-faq-icon { background: var(--jr-orange-500); color: var(--jr-white); transform: rotate(45deg); }

.jr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.jr-faq-item.jr-faq-open .jr-faq-answer { max-height: 300px; }

.jr-faq-answer-inner {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--jr-text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--jr-border);
}

/* ---- Article Pages ---- */
.jr-article-content-section { background: var(--jr-white); }

.jr-article-main-content { max-width: 780px; }

.jr-article-featured-image {
  border-radius: var(--jr-radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--jr-shadow-md);
}

.jr-article-featured-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.jr-article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--jr-border);
}

.jr-article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--jr-text-muted);
}

.jr-article-meta-item i { color: var(--jr-orange-500); }

.jr-article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin: 40px 0 16px;
}

.jr-article-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jr-blue-800);
  margin: 28px 0 12px;
}

.jr-article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--jr-text-main);
  margin-bottom: 20px;
}

.jr-article-body ul, .jr-article-body ol {
  margin-bottom: 20px;
}

.jr-article-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--jr-text-main);
  margin-bottom: 8px;
}

.jr-article-inline-image {
  border-radius: var(--jr-radius-md);
  overflow: hidden;
  margin: 32px 0;
}

.jr-article-inline-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.jr-article-callout {
  background: var(--jr-blue-100);
  border-left: 4px solid var(--jr-blue-500);
  border-radius: 0 var(--jr-radius-md) var(--jr-radius-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.jr-article-callout p {
  margin: 0;
  color: var(--jr-blue-800);
  font-size: 0.95rem;
  font-weight: 500;
}

.jr-article-sidebar { padding-left: 40px; }

.jr-sidebar-card {
  background: var(--jr-gray-50);
  border-radius: var(--jr-radius-lg);
  padding: 28px;
  border: 1px solid var(--jr-border);
  margin-bottom: 28px;
}

.jr-sidebar-title {
  font-family: var(--jr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--jr-orange-400);
}

/* ---- Contact Page ---- */
.jr-contact-form-card {
  background: var(--jr-white);
  border-radius: var(--jr-radius-xl);
  padding: 48px;
  box-shadow: var(--jr-shadow-md);
  border: 1px solid var(--jr-border);
}

.jr-form-group { margin-bottom: 24px; }

.jr-form-label {
  display: block;
  font-family: var(--jr-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--jr-blue-900);
  margin-bottom: 8px;
}

.jr-form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--jr-border);
  border-radius: var(--jr-radius-md);
  font-family: var(--jr-font-body);
  font-size: 0.95rem;
  color: var(--jr-text-main);
  background: var(--jr-white);
  transition: all var(--jr-transition);
  outline: none;
}

.jr-form-control:focus {
  border-color: var(--jr-blue-400);
  box-shadow: 0 0 0 4px rgba(37,87,167,0.1);
}

.jr-form-control.jr-input-error { border-color: #dc3545; }

.jr-form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 6px;
}

.jr-form-control.jr-input-error + .jr-form-error-msg { display: block; }

textarea.jr-form-control { resize: vertical; min-height: 130px; }

.jr-contact-info-card {
  background: var(--jr-blue-900);
  border-radius: var(--jr-radius-xl);
  padding: 40px;
  color: var(--jr-white);
  height: 100%;
}

.jr-contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--jr-white);
  margin-bottom: 28px;
}

.jr-contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.jr-contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--jr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-orange-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.jr-contact-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.jr-contact-detail-value {
  font-size: 0.95rem;
  color: var(--jr-white);
  font-weight: 500;
}

.jr-contact-detail-value a {
  color: var(--jr-white);
  text-decoration: none;
  transition: color var(--jr-transition);
}

.jr-contact-detail-value a:hover { color: var(--jr-orange-400); }

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

.jr-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  margin: 0;
}

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

.jr-map-wrap {
  border-radius: var(--jr-radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--jr-shadow-md);
  margin-top: 40px;
}

.jr-map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ---- Thank You Page ---- */
.jr-thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--jr-gray-50);
  padding: 100px 0;
}

.jr-thank-you-card {
  background: var(--jr-white);
  border-radius: var(--jr-radius-xl);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--jr-shadow-md);
  border: 1px solid var(--jr-border);
  max-width: 580px;
  margin: 0 auto;
}

.jr-thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--jr-blue-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--jr-blue-500);
  margin: 0 auto 28px;
}

/* ---- About Us ---- */
.jr-about-story-section { background: var(--jr-white); }
.jr-about-timeline-section { background: var(--jr-gray-50); }

.jr-about-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.jr-about-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--jr-border);
}

.jr-timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.jr-timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--jr-blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jr-white);
  font-family: var(--jr-font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 4px solid var(--jr-white);
  box-shadow: var(--jr-shadow-sm);
}

.jr-timeline-content {
  padding-top: 12px;
  padding-bottom: 8px;
}

.jr-timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--jr-orange-500);
  margin-bottom: 4px;
}

.jr-timeline-title {
  font-family: var(--jr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 8px;
}

.jr-timeline-desc {
  font-size: 0.9rem;
  color: var(--jr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---- Values Grid ---- */
.jr-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jr-value-card {
  background: var(--jr-gray-50);
  border-radius: var(--jr-radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--jr-border);
  text-align: center;
  transition: all var(--jr-transition);
}

.jr-value-card:hover { box-shadow: var(--jr-shadow-md); transform: translateY(-4px); }

.jr-value-icon {
  width: 64px;
  height: 64px;
  background: var(--jr-blue-100);
  border-radius: var(--jr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--jr-blue-500);
  margin: 0 auto 20px;
  transition: all var(--jr-transition);
}

.jr-value-card:hover .jr-value-icon { background: var(--jr-blue-500); color: var(--jr-white); }

.jr-value-title {
  font-family: var(--jr-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin-bottom: 10px;
}

.jr-value-desc {
  font-size: 0.88rem;
  color: var(--jr-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---- Legal Pages ---- */
.jr-legal-content-section {
  background: var(--jr-white);
  padding: 80px 0;
}

.jr-legal-content-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.jr-legal-content-wrap h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--jr-blue-900);
  margin: 40px 0 16px;
}

.jr-legal-content-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jr-blue-800);
  margin: 28px 0 12px;
}

.jr-legal-content-wrap p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--jr-text-main);
  margin-bottom: 16px;
}

.jr-legal-content-wrap ul, .jr-legal-content-wrap ol {
  margin-bottom: 16px;
}

.jr-legal-content-wrap li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--jr-text-main);
}

.jr-legal-updated {
  display: inline-block;
  background: var(--jr-gray-100);
  border-radius: var(--jr-radius-full);
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--jr-text-muted);
  margin-bottom: 40px;
}

/* ---- Cookie Consent Banner ---- */
.jr-cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--jr-blue-900);
  border-top: 3px solid var(--jr-orange-500);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
}

.jr-cookie-consent-bar.jr-cookie-visible { transform: translateY(0); }

.jr-cookie-consent-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.jr-cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  min-width: 200px;
}

.jr-cookie-text strong { color: var(--jr-white); }
.jr-cookie-text a { color: var(--jr-orange-400); text-decoration: none; }
.jr-cookie-text a:hover { color: var(--jr-orange-300); }

.jr-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---- Service Filter ---- */
.jr-service-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.jr-filter-btn {
  padding: 8px 20px;
  border-radius: var(--jr-radius-full);
  border: 2px solid var(--jr-border);
  background: var(--jr-white);
  color: var(--jr-text-muted);
  font-family: var(--jr-font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--jr-transition);
}

.jr-filter-btn:hover, .jr-filter-btn.jr-filter-active {
  background: var(--jr-blue-500);
  border-color: var(--jr-blue-500);
  color: var(--jr-white);
}

/* ---- Scroll Reveal ---- */
.jr-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.jr-reveal.jr-revealed {
  opacity: 1;
  transform: translateY(0);
}

.jr-reveal-delay-1 { transition-delay: 0.1s; }
.jr-reveal-delay-2 { transition-delay: 0.2s; }
.jr-reveal-delay-3 { transition-delay: 0.3s; }
.jr-reveal-delay-4 { transition-delay: 0.4s; }
.jr-reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Knowledge Quiz ---- */
.jr-knowledge-quiz-card {
  background: var(--jr-white);
  border-radius: var(--jr-radius-xl);
  padding: 48px;
  border: 1px solid var(--jr-border);
  box-shadow: var(--jr-shadow-sm);
}

.jr-kq-question-block { display: none; }
.jr-kq-question-block.jr-kq-active { display: block; }

.jr-kq-result-block { display: none; text-align: center; }
.jr-kq-result-block.jr-kq-active { display: block; }

.jr-kq-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }

.jr-kq-option {
  border: 2px solid var(--jr-border);
  border-radius: var(--jr-radius-md);
  padding: 14px 18px;
  cursor: pointer;
  font-size: 0.92rem;
  transition: all var(--jr-transition);
  text-align: left;
  background: var(--jr-white);
  color: var(--jr-text-main);
  font-family: var(--jr-font-body);
}

.jr-kq-option:hover { border-color: var(--jr-blue-400); background: var(--jr-blue-100); }
.jr-kq-option.jr-kq-correct { border-color: #28a745; background: #d4edda; color: #155724; }
.jr-kq-option.jr-kq-wrong { border-color: #dc3545; background: #f8d7da; color: #721c24; }

.jr-kq-feedback {
  padding: 12px 16px;
  border-radius: var(--jr-radius-md);
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
}

.jr-kq-feedback.jr-kq-feedback-show { display: block; }
.jr-kq-feedback-correct { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.jr-kq-feedback-wrong { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .jr-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .jr-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .jr-service-grid-cards { grid-template-columns: repeat(2, 1fr); }
  .jr-stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .jr-process-steps { grid-template-columns: repeat(2, 1fr); }
  .jr-process-steps::before { display: none; }
  .jr-values-grid { grid-template-columns: repeat(2, 1fr); }
  .jr-article-card-grid { grid-template-columns: repeat(2, 1fr); }
  .jr-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .jr-article-sidebar { padding-left: 0; margin-top: 40px; }
  .jr-contact-form-card { padding: 32px; }
  .jr-quiz-card { padding: 32px; }
  .jr-knowledge-quiz-card { padding: 32px; }
}

@media (max-width: 767px) {
  .jr-service-grid-cards { grid-template-columns: 1fr; }
  .jr-stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .jr-process-steps { grid-template-columns: 1fr; }
  .jr-team-grid { grid-template-columns: 1fr; }
  .jr-values-grid { grid-template-columns: 1fr; }
  .jr-article-card-grid { grid-template-columns: 1fr; }
  .jr-tips-grid { grid-template-columns: 1fr; }
  .jr-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .jr-hero-action-group { flex-direction: column; align-items: flex-start; }
  .jr-quiz-options { grid-template-columns: 1fr; }
  .jr-contact-form-card { padding: 24px; }
  .jr-thank-you-card { padding: 40px 24px; }
  .jr-ba-image-compare { height: 280px; }
}

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

html{
  overflow-x: hidden;
}