/* ===================================================
   Fair Repair — Main Stylesheet
   https://fairrepair.org
   =================================================== */

:root {
  --fr-navy:       #0d1f3c;
  --fr-deep:       #142444;
  --fr-blue:       #1a6bbd;
  --fr-sky:        #3a8fd4;
  --fr-accent:     #e8a020;
  --fr-accent-lt:  #f4c060;
  --fr-slate:      #4a5568;
  --fr-muted:      #6b7a8d;
  --fr-light:      #f0f4f8;
  --fr-white:      #ffffff;
  --fr-border:     #d8e2ef;
  --fr-success:    #2d9e6e;
  --fr-warn:       #c0392b;

  --fr-font-display: 'Playfair Display', Georgia, serif;
  --fr-font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;
  --fr-font-mono:    'DM Mono', 'Courier New', monospace;

  --fr-radius:     8px;
  --fr-radius-lg:  16px;
  --fr-shadow-sm:  0 2px 8px rgba(13,31,60,0.08);
  --fr-shadow:     0 6px 24px rgba(13,31,60,0.12);
  --fr-shadow-lg:  0 16px 48px rgba(13,31,60,0.18);
  --fr-transition: 0.28s 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(--fr-font-body);
  color: var(--fr-navy);
  background: var(--fr-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fr-font-display);
  line-height: 1.25;
  color: var(--fr-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.fr-lead {
  font-size: 1.2rem;
  color: var(--fr-slate);
  line-height: 1.8;
}

.fr-label {
  font-family: var(--fr-font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fr-accent);
  font-weight: 600;
}

/* ---- Layout ---- */
.fr-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fr-section { padding: 90px 0; }
.fr-section-sm { padding: 60px 0; }
.fr-section-lg { padding: 120px 0; }

/* ---- Utility ---- */
.fr-text-center { text-align: center; }
.fr-mb-1 { margin-bottom: 0.5rem; }
.fr-mb-2 { margin-bottom: 1rem; }
.fr-mb-3 { margin-bottom: 1.5rem; }
.fr-mb-4 { margin-bottom: 2rem; }
.fr-mb-5 { margin-bottom: 3rem; }
.fr-mt-auto { margin-top: auto; }

.fr-bg-light { background: var(--fr-light); }
.fr-bg-navy  { background: var(--fr-navy); color: var(--fr-white); }
.fr-bg-deep  { background: var(--fr-deep); color: var(--fr-white); }

/* ---- Buttons ---- */
.fr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--fr-radius);
  font-family: var(--fr-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--fr-transition);
  text-decoration: none;
  white-space: nowrap;
}

.fr-btn-primary {
  background: var(--fr-blue);
  color: var(--fr-white);
  border-color: var(--fr-blue);
}
.fr-btn-primary:hover {
  background: var(--fr-accent);
  border-color: var(--fr-accent);
  color: var(--fr-navy);
  transform: translateY(-2px);
  box-shadow: var(--fr-shadow);
}

.fr-btn-outline {
  background: transparent;
  color: var(--fr-white);
  border-color: rgba(255,255,255,0.6);
}
.fr-btn-outline:hover {
  background: var(--fr-white);
  color: var(--fr-navy);
  border-color: var(--fr-white);
}

.fr-btn-accent {
  background: var(--fr-accent);
  color: var(--fr-navy);
  border-color: var(--fr-accent);
}
.fr-btn-accent:hover {
  background: var(--fr-accent-lt);
  border-color: var(--fr-accent-lt);
  transform: translateY(-2px);
  box-shadow: var(--fr-shadow);
}

.fr-btn-ghost {
  background: transparent;
  color: var(--fr-blue);
  border-color: var(--fr-blue);
}
.fr-btn-ghost:hover {
  background: var(--fr-blue);
  color: var(--fr-white);
}

/* ---- Navbar ---- */
.fr-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13,31,60,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--fr-transition);
}

.fr-navbar.scrolled {
  background: rgba(13,31,60,0.99);
  box-shadow: var(--fr-shadow);
}

.fr-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.fr-logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--fr-blue), var(--fr-accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.fr-logo-text {
  font-family: var(--fr-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fr-white);
}

.fr-logo-text span { color: var(--fr-accent); }

.fr-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.fr-nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: all var(--fr-transition);
}

.fr-nav-links a:hover,
.fr-nav-links a.active {
  color: var(--fr-white);
  background: rgba(255,255,255,0.1);
}

.fr-nav-cta {
  background: var(--fr-accent) !important;
  color: var(--fr-navy) !important;
  padding: 0.45rem 1rem !important;
  font-weight: 600 !important;
}
.fr-nav-cta:hover {
  background: var(--fr-accent-lt) !important;
}

.fr-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* ---- Hero Editorial ---- */
.fr-hero-editorial {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fr-navy);
}

.fr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.fr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--fr-navy) 45%, rgba(13,31,60,0.6) 100%);
}

.fr-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
}

.fr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fr-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--fr-accent-lt);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fr-hero-tag i { font-size: 0.7rem; }

.fr-hero-title {
  color: var(--fr-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.fr-hero-title em {
  font-style: normal;
  color: var(--fr-accent);
  position: relative;
}

.fr-hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.fr-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fr-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.fr-hero-stat-num {
  font-family: var(--fr-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fr-accent);
}

.fr-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.15rem;
}

.fr-hero-right {
  position: relative;
}

.fr-hero-card-stack {
  position: relative;
  height: 420px;
}

.fr-hero-img-card {
  position: absolute;
  border-radius: var(--fr-radius-lg);
  overflow: hidden;
  box-shadow: var(--fr-shadow-lg);
}

.fr-hero-img-card.main {
  width: 78%;
  height: 340px;
  top: 0;
  right: 0;
}

.fr-hero-img-card.secondary {
  width: 55%;
  height: 220px;
  bottom: 0;
  left: 0;
  border: 3px solid var(--fr-navy);
}

.fr-hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fr-hero-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--fr-accent);
  color: var(--fr-navy);
  padding: 0.7rem 1.1rem;
  border-radius: var(--fr-radius);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--fr-shadow);
  z-index: 3;
}

/* ---- Section Headers ---- */
.fr-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.fr-section-header .fr-label { margin-bottom: 0.6rem; display: block; }
.fr-section-header h2 { margin-bottom: 1rem; }
.fr-section-header p { color: var(--fr-slate); font-size: 1.05rem; }

/* ---- Service Cards ---- */
.fr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.fr-service-card {
  background: var(--fr-white);
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-lg);
  padding: 2rem;
  transition: all var(--fr-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fr-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fr-blue), var(--fr-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--fr-transition);
}

.fr-service-card:hover {
  border-color: var(--fr-sky);
  box-shadow: var(--fr-shadow);
  transform: translateY(-4px);
}

.fr-service-card:hover::before { transform: scaleX(1); }

.fr-service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(26,107,189,0.12), rgba(58,143,212,0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--fr-blue);
  margin-bottom: 1.2rem;
  transition: all var(--fr-transition);
}

.fr-service-card:hover .fr-service-icon {
  background: var(--fr-blue);
  color: white;
  transform: rotate(-4deg) scale(1.05);
}

.fr-service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.fr-service-card p  { color: var(--fr-slate); font-size: 0.92rem; line-height: 1.65; flex: 1; }
.fr-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fr-blue);
  margin-top: 1.2rem;
  transition: gap var(--fr-transition);
}
.fr-service-link:hover { gap: 0.65rem; }

/* ---- Why Choose Us ---- */
.fr-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.fr-why-img {
  position: relative;
  border-radius: var(--fr-radius-lg);
  overflow: hidden;
}

.fr-why-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--fr-radius-lg);
}

.fr-why-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--fr-accent);
  border-radius: var(--fr-radius-lg);
  z-index: -1;
}

.fr-why-list { list-style: none; }
.fr-why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--fr-border);
}
.fr-why-item:last-child { border-bottom: none; }

.fr-why-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(26,107,189,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fr-blue);
  font-size: 1rem;
}

.fr-why-text h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.fr-why-text p  { font-size: 0.88rem; color: var(--fr-muted); margin: 0; line-height: 1.6; }

/* ---- Interactive Tests ---- */
.fr-tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.fr-test-widget {
  background: var(--fr-white);
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-lg);
  padding: 1.8rem;
  box-shadow: var(--fr-shadow-sm);
}

.fr-test-widget h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fr-test-widget h3 i { color: var(--fr-blue); font-size: 1rem; }
.fr-test-widget .fr-test-desc { font-size: 0.88rem; color: var(--fr-muted); margin-bottom: 1.2rem; }

.fr-quiz-question { font-size: 0.95rem; font-weight: 600; color: var(--fr-navy); margin-bottom: 0.8rem; }
.fr-quiz-options { display: flex; flex-direction: column; gap: 0.5rem; }

.fr-quiz-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius);
  cursor: pointer;
  font-size: 0.88rem;
  transition: all var(--fr-transition);
}
.fr-quiz-option:hover { border-color: var(--fr-blue); background: rgba(26,107,189,0.04); }
.fr-quiz-option.selected { border-color: var(--fr-blue); background: rgba(26,107,189,0.08); color: var(--fr-blue); font-weight: 600; }
.fr-quiz-option input { accent-color: var(--fr-blue); }

.fr-test-result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--fr-radius);
  font-size: 0.88rem;
  display: none;
}
.fr-test-result.show { display: block; }
.fr-test-result.info    { background: rgba(26,107,189,0.08); border-left: 3px solid var(--fr-blue); color: var(--fr-blue); }
.fr-test-result.warning { background: rgba(192,57,43,0.07); border-left: 3px solid var(--fr-warn); color: var(--fr-warn); }
.fr-test-result.success { background: rgba(45,158,110,0.08); border-left: 3px solid var(--fr-success); color: var(--fr-success); }

.fr-test-btn {
  margin-top: 1rem;
  padding: 0.5rem 1.1rem;
  background: var(--fr-blue);
  color: white;
  border: none;
  border-radius: var(--fr-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--fr-transition);
}
.fr-test-btn:hover { background: var(--fr-accent); color: var(--fr-navy); }

/* Checklist */
.fr-checklist { list-style: none; }
.fr-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 6px;
  padding-left: 0.3rem;
  transition: background var(--fr-transition);
}
.fr-checklist li:hover { background: var(--fr-light); }
.fr-checklist li input[type="checkbox"] { accent-color: var(--fr-blue); width: 15px; height: 15px; }
.fr-check-score {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fr-blue);
  margin-top: 0.8rem;
}

/* Decision Tool */
.fr-decision-step { display: none; }
.fr-decision-step.active { display: block; }
.fr-decision-q { font-size: 0.93rem; font-weight: 600; margin-bottom: 0.75rem; }
.fr-decision-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fr-decision-btn {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius);
  font-size: 0.83rem;
  cursor: pointer;
  background: white;
  transition: all var(--fr-transition);
}
.fr-decision-btn:hover { border-color: var(--fr-blue); color: var(--fr-blue); background: rgba(26,107,189,0.05); }
.fr-decision-progress {
  height: 3px;
  background: var(--fr-border);
  border-radius: 2px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.fr-decision-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--fr-blue), var(--fr-accent));
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ---- Before/After Slider ---- */
.fr-ba-section { background: var(--fr-navy); }
.fr-ba-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.fr-ba-slider-wrap {
  position: relative;
  border-radius: var(--fr-radius-lg);
  overflow: hidden;
  user-select: none;
  box-shadow: var(--fr-shadow-lg);
  margin: 2rem 0;
  height: 360px;
}

.fr-ba-after, .fr-ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fr-ba-after {
  background-image: url('https://images.unsplash.com/photo-1593640408182-31c228b1f0f5?w=900&q=80');
  z-index: 1;
}

.fr-ba-before {
  background-image: url('https://images.unsplash.com/photo-1588702547919-26089e690ecc?w=900&q=80');
  clip-path: inset(0 50% 0 0);
  z-index: 2;
  transition: none;
}

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

.fr-ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--fr-white);
  border-radius: 50%;
  box-shadow: var(--fr-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fr-navy);
  font-size: 0.8rem;
}

.fr-ba-label {
  position: absolute;
  bottom: 14px;
  padding: 0.3rem 0.7rem;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.fr-ba-label.before-lbl { left: 14px; }
.fr-ba-label.after-lbl  { right: 14px; }

/* ---- Testimonials ---- */
.fr-testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
}

.fr-testimonial-card {
  min-width: 360px;
  flex: 0 0 360px;
  background: var(--fr-white);
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-lg);
  padding: 1.8rem;
  box-shadow: var(--fr-shadow-sm);
}

.fr-testimonial-stars {
  color: var(--fr-accent);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.fr-testimonial-text {
  font-size: 0.92rem;
  color: var(--fr-slate);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.fr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.fr-testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.fr-testimonial-name { font-weight: 700; font-size: 0.88rem; }
.fr-testimonial-role { font-size: 0.78rem; color: var(--fr-muted); }

.fr-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.fr-carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--fr-border);
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--fr-slate);
  transition: all var(--fr-transition);
  font-size: 0.9rem;
}
.fr-carousel-btn:hover {
  border-color: var(--fr-blue);
  color: var(--fr-blue);
  background: rgba(26,107,189,0.05);
}

/* ---- Team ---- */
.fr-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.fr-team-card {
  text-align: center;
  padding: 1.5rem 1rem 1.8rem;
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-lg);
  transition: all var(--fr-transition);
  background: var(--fr-white);
}
.fr-team-card:hover {
  box-shadow: var(--fr-shadow);
  transform: translateY(-4px);
  border-color: var(--fr-sky);
}

.fr-team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--fr-border);
  transition: border-color var(--fr-transition);
}
.fr-team-card:hover .fr-team-photo { border-color: var(--fr-blue); }

.fr-team-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.fr-team-role { font-size: 0.82rem; color: var(--fr-muted); }

/* ---- FAQ ---- */
.fr-faq-list { max-width: 780px; margin: 0 auto; }
.fr-faq-item {
  border-bottom: 1px solid var(--fr-border);
  padding: 1.1rem 0;
}

.fr-faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.2rem 0;
  gap: 1rem;
}

.fr-faq-trigger h4 { font-size: 0.98rem; margin: 0; font-weight: 600; }
.fr-faq-icon {
  min-width: 24px;
  color: var(--fr-blue);
  transition: transform var(--fr-transition);
  font-size: 0.9rem;
}
.fr-faq-item.open .fr-faq-icon { transform: rotate(180deg); }

.fr-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fr-faq-body p { font-size: 0.9rem; color: var(--fr-slate); padding: 0.6rem 0 0.3rem; line-height: 1.7; margin: 0; }

/* ---- CTA Banner ---- */
.fr-cta-banner {
  background: linear-gradient(135deg, var(--fr-navy), var(--fr-deep));
  color: white;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.fr-cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,107,189,0.18) 0%, transparent 70%);
}

.fr-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.fr-cta-inner h2 { color: white; margin-bottom: 1rem; }
.fr-cta-inner p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.fr-cta-btns    { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Footer ---- */
.fr-footer {
  background: var(--fr-navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.fr-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.fr-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1rem 0 1.2rem;
  max-width: 300px;
}

.fr-footer-social {
  display: flex;
  gap: 0.5rem;
}

.fr-footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--fr-transition);
}
.fr-footer-social a:hover {
  background: var(--fr-blue);
  color: white;
}

.fr-footer-col h5 {
  font-family: var(--fr-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.fr-footer-links { list-style: none; }
.fr-footer-links li { margin-bottom: 0.45rem; }
.fr-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--fr-transition);
}
.fr-footer-links a:hover { color: var(--fr-accent); }

.fr-footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}
.fr-footer-contact-item i {
  color: var(--fr-accent);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  min-width: 14px;
}
.fr-footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

.fr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.fr-footer-bottom p  { font-size: 0.8rem; margin: 0; }
.fr-footer-legal     { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.fr-footer-legal a   { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.fr-footer-legal a:hover { color: var(--fr-accent); }

/* ---- Cookie Banner ---- */
.fr-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--fr-navy);
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  border-top: 2px solid var(--fr-blue);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.fr-cookie-banner.show { transform: translateY(0); }
.fr-cookie-text { font-size: 0.85rem; flex: 1; }
.fr-cookie-text a { color: var(--fr-accent-lt); }
.fr-cookie-btns  { display: flex; gap: 0.6rem; flex-shrink: 0; }

.fr-cookie-accept, .fr-cookie-decline {
  padding: 0.45rem 1rem;
  border-radius: var(--fr-radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.fr-cookie-accept  { background: var(--fr-accent); color: var(--fr-navy); }
.fr-cookie-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* ---- Page Header ---- */
.fr-page-header {
  background: linear-gradient(135deg, var(--fr-navy) 0%, var(--fr-deep) 100%);
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
  color: white;
}

.fr-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--fr-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.fr-page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fr-page-header-content { position: relative; z-index: 1; }
.fr-page-header h1 { color: white; margin-bottom: 0.75rem; }
.fr-breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.fr-breadcrumb a  { color: rgba(255,255,255,0.6); }
.fr-breadcrumb a:hover { color: var(--fr-accent-lt); }
.fr-breadcrumb i  { font-size: 0.65rem; }

/* ---- Contact Form ---- */
.fr-form-group {
  margin-bottom: 1.2rem;
}
.fr-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fr-navy);
  margin-bottom: 0.4rem;
}
.fr-form-group label span { color: var(--fr-warn); }

.fr-form-input,
.fr-form-select,
.fr-form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--fr-border);
  border-radius: var(--fr-radius);
  font-family: var(--fr-font-body);
  font-size: 0.92rem;
  color: var(--fr-navy);
  background: var(--fr-white);
  transition: border-color var(--fr-transition), box-shadow var(--fr-transition);
  outline: none;
}

.fr-form-input:focus,
.fr-form-select:focus,
.fr-form-textarea:focus {
  border-color: var(--fr-blue);
  box-shadow: 0 0 0 3px rgba(26,107,189,0.1);
}

.fr-form-textarea { resize: vertical; min-height: 120px; }

.fr-form-error { font-size: 0.78rem; color: var(--fr-warn); margin-top: 0.3rem; display: none; }
.fr-form-error.show { display: block; }
.fr-form-input.error, .fr-form-textarea.error { border-color: var(--fr-warn); }

.fr-captcha-wrap {
  background: var(--fr-light);
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fr-captcha-question { font-size: 0.92rem; font-weight: 600; }
.fr-captcha-input {
  width: 80px;
  padding: 0.4rem 0.6rem;
  border: 1.5px solid var(--fr-border);
  border-radius: var(--fr-radius);
  font-size: 0.9rem;
  text-align: center;
  outline: none;
}
.fr-captcha-input:focus { border-color: var(--fr-blue); }
.fr-captcha-new {
  font-size: 0.8rem;
  color: var(--fr-blue);
  cursor: pointer;
  text-decoration: underline;
}

/* ---- Map wrap ---- */
.fr-map-wrap {
  border-radius: var(--fr-radius-lg);
  overflow: hidden;
  box-shadow: var(--fr-shadow);
  border: 1px solid var(--fr-border);
}
.fr-map-wrap iframe { display: block; }

/* ---- Articles ---- */
.fr-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.fr-article-card {
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-lg);
  overflow: hidden;
  background: white;
  transition: all var(--fr-transition);
}
.fr-article-card:hover {
  box-shadow: var(--fr-shadow);
  transform: translateY(-4px);
}

.fr-article-img { height: 200px; overflow: hidden; }
.fr-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fr-article-card:hover .fr-article-img img { transform: scale(1.04); }

.fr-article-body { padding: 1.5rem; }
.fr-article-meta { font-size: 0.78rem; color: var(--fr-muted); margin-bottom: 0.6rem; display: flex; gap: 0.8rem; align-items: center; }
.fr-article-meta i { font-size: 0.7rem; }
.fr-article-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.fr-article-card p  { font-size: 0.87rem; color: var(--fr-slate); line-height: 1.65; margin: 0; }
.fr-article-card .fr-read-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.83rem; font-weight: 600; color: var(--fr-blue); margin-top: 1rem; }

/* ---- Article Single ---- */
.fr-article-single { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.fr-article-single h1 { margin-bottom: 1.2rem; }
.fr-article-single .fr-article-meta { margin-bottom: 1.5rem; }
.fr-article-single .fr-hero-img { border-radius: var(--fr-radius-lg); margin-bottom: 2.5rem; height: 400px; object-fit: cover; width: 100%; }
.fr-article-content h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.fr-article-content h3 { font-size: 1.15rem; margin: 1.5rem 0 0.6rem; }
.fr-article-content p  { color: var(--fr-slate); line-height: 1.8; margin-bottom: 1.1rem; }
.fr-article-content ul { padding-left: 1.4rem; margin-bottom: 1.1rem; }
.fr-article-content ul li { color: var(--fr-slate); line-height: 1.75; margin-bottom: 0.3rem; font-size: 0.96rem; }
.fr-article-content .fr-callout {
  background: rgba(26,107,189,0.07);
  border-left: 3px solid var(--fr-blue);
  border-radius: 0 var(--fr-radius) var(--fr-radius) 0;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  color: var(--fr-navy);
  font-size: 0.93rem;
}

.fr-article-img-mid { border-radius: var(--fr-radius); margin: 2rem 0; width: 100%; height: 260px; object-fit: cover; }

/* ---- Services detail ---- */
.fr-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--fr-border);
}
.fr-service-detail:last-child { border-bottom: none; }
.fr-service-detail.reverse { direction: rtl; }
.fr-service-detail.reverse > * { direction: ltr; }

.fr-service-detail-img { border-radius: var(--fr-radius-lg); width: 100%; height: 300px; object-fit: cover; }
.fr-service-detail-body h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.fr-service-detail-body p  { color: var(--fr-slate); font-size: 0.95rem; line-height: 1.75; }

.fr-service-meta-list { list-style: none; margin-top: 1.2rem; }
.fr-service-meta-list li {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--fr-border);
  font-size: 0.88rem;
  color: var(--fr-slate);
}
.fr-service-meta-list li:last-child { border-bottom: none; }
.fr-service-meta-list li strong { color: var(--fr-navy); min-width: 90px; }

.fr-service-limitation {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--fr-radius);
  padding: 0.8rem 1rem;
  font-size: 0.83rem;
  color: #8b2020;
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.fr-service-limitation i { margin-top: 0.1rem; }

/* ---- About Timeline ---- */
.fr-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.fr-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--fr-border);
}
.fr-timeline-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
}
.fr-timeline-dot {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--fr-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 1;
  flex-shrink: 0;
}
.fr-timeline-body h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.fr-timeline-body p  { font-size: 0.88rem; color: var(--fr-muted); margin: 0; }

/* ---- Values ---- */
.fr-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.fr-value-card {
  background: var(--fr-white);
  border: 1px solid var(--fr-border);
  border-radius: var(--fr-radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: all var(--fr-transition);
}
.fr-value-card:hover { transform: translateY(-3px); box-shadow: var(--fr-shadow); }
.fr-value-card i {
  font-size: 1.6rem;
  color: var(--fr-blue);
  margin-bottom: 0.8rem;
  display: block;
}
.fr-value-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.fr-value-card p  { font-size: 0.82rem; color: var(--fr-muted); margin: 0; line-height: 1.55; }

/* ---- Thank You ---- */
.fr-thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.fr-thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(45,158,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--fr-success);
}
.fr-thankyou-wrap h1 { margin-bottom: 1rem; }
.fr-thankyou-wrap p  { color: var(--fr-slate); max-width: 500px; margin: 0 auto 2rem; }

/* ---- Legal pages ---- */
.fr-legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.fr-legal-content h2 { font-size: 1.35rem; margin: 2.5rem 0 0.8rem; }
.fr-legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.fr-legal-content p  { font-size: 0.93rem; color: var(--fr-slate); line-height: 1.8; margin-bottom: 1rem; }
.fr-legal-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.fr-legal-content ul li { font-size: 0.93rem; color: var(--fr-slate); line-height: 1.75; margin-bottom: 0.3rem; }
.fr-legal-date { font-size: 0.85rem; color: var(--fr-muted); margin-bottom: 2rem; }

/* ---- Hours table ---- */
.fr-hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.fr-hours-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--fr-border); }
.fr-hours-table tr:last-child td { border-bottom: none; }
.fr-hours-table td:first-child { color: var(--fr-navy); font-weight: 600; }
.fr-hours-table td:last-child { color: var(--fr-slate); }

/* ---- Animations ---- */
.fr-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fr-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fr-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fr-fade-in.visible { opacity: 1; }

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

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .fr-hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .fr-hero-right { display: none; }
  .fr-why-grid { grid-template-columns: 1fr; }
  .fr-why-img { display: none; }
  .fr-footer-grid { grid-template-columns: 1fr 1fr; }
  .fr-service-detail { grid-template-columns: 1fr; }
  .fr-service-detail.reverse { direction: ltr; }
  .fr-service-detail-img { height: 220px; }
}

@media (max-width: 768px) {
  .fr-nav-links { display: none; }
  .fr-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--fr-navy);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 998;
  }
  .fr-nav-toggle { display: flex; }
  .fr-section { padding: 60px 0; }
  .fr-section-lg { padding: 80px 0; }
  .fr-footer-grid { grid-template-columns: 1fr; }
  .fr-footer-bottom { flex-direction: column; text-align: center; }
  .fr-hero-stats { gap: 1.2rem; }
  .fr-tests-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .fr-hero-actions { flex-direction: column; }
  .fr-cta-btns { flex-direction: column; align-items: center; }
  .fr-ba-slider-wrap { height: 240px; }
}

/* ---- Legal Pages ---- */
.fr-page-header--legal { padding-top: 120px; padding-bottom: 50px; min-height: auto; }
.fr-legal-main { padding: 60px 0 80px; }
.fr-legal-body { max-width: 100%; }
.fr-legal-intro { font-size: 1.05rem; color: var(--fr-slate); line-height: 1.85; margin-bottom: 2rem; padding: 1.5rem 2rem; background: var(--fr-light); border-radius: 8px; border-left: 4px solid var(--fr-blue); }
.fr-legal-body h2 { font-family: var(--fr-heading-font); font-size: 1.35rem; color: var(--fr-navy); margin: 2.5rem 0 0.8rem; padding-top: 1rem; border-top: 1px solid #e8edf3; }
.fr-legal-body h2:first-of-type { border-top: none; }
.fr-legal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--fr-navy); margin: 1.5rem 0 0.5rem; }
.fr-legal-body p { font-size: 0.95rem; color: var(--fr-slate); line-height: 1.8; margin-bottom: 1rem; }
.fr-legal-body ul, .fr-legal-body ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.fr-legal-body li { font-size: 0.95rem; color: var(--fr-slate); line-height: 1.75; margin-bottom: 0.35rem; }
.fr-legal-body a { color: var(--fr-blue); }
.fr-legal-address { font-style: normal; background: var(--fr-light); padding: 1.25rem 1.5rem; border-radius: 8px; font-size: 0.93rem; line-height: 1.8; margin-top: 0.5rem; }
.fr-legal-address a { color: var(--fr-blue); }

/* ---- Article Pages ---- */
.fr-article-main { padding: 50px 0 80px; }
.fr-article-hero-img { margin-bottom: 2.5rem; }
.fr-article-hero-img img { width: 100%; max-height: 420px; object-fit: cover; }
.fr-article-body { font-size: 1.02rem; line-height: 1.85; color: var(--fr-slate); }
.fr-article-lead { font-size: 1.15rem; line-height: 1.8; color: var(--fr-navy); font-weight: 400; margin-bottom: 1.75rem; }
.fr-article-body h2 { font-family: var(--fr-heading-font); font-size: 1.5rem; color: var(--fr-navy); margin: 2.5rem 0 1rem; }
.fr-article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--fr-navy); margin: 1.75rem 0 0.75rem; }
.fr-article-body p { margin-bottom: 1.25rem; }
.fr-article-body ul, .fr-article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.fr-article-body li { margin-bottom: 0.5rem; }
.fr-article-body strong { color: var(--fr-navy); }
.fr-article-img { width: 100%; max-height: 380px; object-fit: cover; }
.fr-article-cta-block { background: var(--fr-navy); color: #fff; border-radius: 12px; padding: 2.5rem; margin: 3rem 0; text-align: center; }
.fr-article-cta-block h3 { font-family: var(--fr-heading-font); font-size: 1.4rem; margin-bottom: 0.75rem; }
.fr-article-cta-block p { opacity: 0.85; margin-bottom: 1.5rem; }
.fr-article-byline { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid #e8edf3; border-bottom: 1px solid #e8edf3; margin: 2.5rem 0; }
.fr-byline-avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.fr-byline-info { display: flex; flex-direction: column; gap: 0.2rem; }
.fr-byline-info strong { font-size: 0.95rem; color: var(--fr-navy); }
.fr-byline-info span { font-size: 0.85rem; color: var(--fr-muted); }
.fr-related-articles { margin-top: 2rem; }
.fr-related-articles h3 { font-family: var(--fr-heading-font); font-size: 1.3rem; color: var(--fr-navy); margin-bottom: 1rem; }
.fr-related-card { display: block; text-decoration: none; border-radius: 10px; overflow: hidden; border: 1px solid #e8edf3; transition: box-shadow 0.25s; }
.fr-related-card:hover { box-shadow: 0 6px 24px rgba(13,31,60,0.1); }
.fr-related-card img { width: 100%; height: 150px; object-fit: cover; }
.fr-related-card-body { padding: 1rem; }
.fr-related-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--fr-blue); }
.fr-related-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--fr-navy); margin-top: 0.4rem; margin-bottom: 0; line-height: 1.4; }


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

html{
  overflow-x: hidden;
}

.navbar-toggler span{
  background-color: #fff;
  width: 15px;
  height: 2px;
  display: block;
  margin-bottom: 3px;
}