/* ============================================================
   F-M Auto Repair — fm-style.css
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --fm-black:       #0d0d0d;
  --fm-dark:        #161718;
  --fm-charcoal:    #252627;
  --fm-steel:       #3a3d42;
  --fm-mid:         #6b7280;
  --fm-light:       #e8e6e1;
  --fm-white:       #f9f8f5;
  --fm-red:         #c0392b;
  --fm-red-dark:    #962d22;
  --fm-red-bright:  #e74c3c;
  --fm-amber:       #d97706;
  --fm-amber-light: #fbbf24;
  --fm-font-head:   'Barlow Condensed', sans-serif;
  --fm-font-body:   'DM Sans', sans-serif;
  --fm-font-serif:  'Lora', serif;
  --fm-radius:      4px;
  --fm-radius-lg:   10px;
  --fm-shadow:      0 4px 24px rgba(0,0,0,0.18);
  --fm-shadow-lg:   0 12px 48px rgba(0,0,0,0.28);
  --fm-transition:  0.3s 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(--fm-font-body);
  background: var(--fm-white);
  color: var(--fm-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fm-font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--fm-black);
}
.fm-display-xl   { font-size: clamp(3.2rem, 7vw, 7rem); font-weight: 800; letter-spacing: -0.01em; }
.fm-display-lg   { font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 700; }
.fm-display-md   { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; }
.fm-heading-sm   { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
.fm-body-serif   { font-family: var(--fm-font-serif); }
.fm-lead         { font-size: 1.15rem; line-height: 1.75; color: var(--fm-steel); }
.fm-label        { font-family: var(--fm-font-head); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fm-red); font-weight: 600; }
.fm-text-muted   { color: var(--fm-mid); }
.fm-text-light   { color: var(--fm-light); }
.fm-text-white   { color: var(--fm-white); }
.fm-text-red     { color: var(--fm-red); }
.fm-text-amber   { color: var(--fm-amber); }
.fm-text-center  { text-align: center; }
.fm-text-right   { text-align: right; }

/* --- Spacing Utilities --- */
.fm-section        { padding: 5rem 0; }
.fm-section-sm     { padding: 3rem 0; }
.fm-section-lg     { padding: 7rem 0; }
.fm-mt-1  { margin-top: 0.5rem; }
.fm-mt-2  { margin-top: 1rem; }
.fm-mt-3  { margin-top: 1.5rem; }
.fm-mt-4  { margin-top: 2rem; }
.fm-mt-5  { margin-top: 3rem; }
.fm-mb-1  { margin-bottom: 0.5rem; }
.fm-mb-2  { margin-bottom: 1rem; }
.fm-mb-3  { margin-bottom: 1.5rem; }
.fm-mb-4  { margin-bottom: 2rem; }
.fm-mb-5  { margin-bottom: 3rem; }

/* --- Container --- */
.fm-container       { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.fm-container-wide  { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.fm-container-narrow{ max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons --- */
.fm-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--fm-font-head); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.85rem 2.2rem; border: 2px solid transparent;
  border-radius: var(--fm-radius); cursor: pointer;
  transition: var(--fm-transition); position: relative; overflow: hidden;
}
.fm-btn-primary {
  background: var(--fm-red); color: var(--fm-white);
  border-color: var(--fm-red);
}
.fm-btn-primary:hover {
  background: var(--fm-red-dark); border-color: var(--fm-red-dark);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(192,57,43,0.35);
}
.fm-btn-outline {
  background: transparent; color: var(--fm-white);
  border-color: var(--fm-white);
}
.fm-btn-outline:hover {
  background: var(--fm-white); color: var(--fm-black);
}
.fm-btn-dark {
  background: var(--fm-black); color: var(--fm-white);
  border-color: var(--fm-black);
}
.fm-btn-dark:hover {
  background: var(--fm-charcoal); border-color: var(--fm-charcoal);
  transform: translateY(-2px);
}
.fm-btn-amber {
  background: var(--fm-amber); color: var(--fm-black);
  border-color: var(--fm-amber);
}
.fm-btn-amber:hover {
  background: var(--fm-amber-light); border-color: var(--fm-amber-light);
  transform: translateY(-2px);
}
.fm-btn-sm { padding: 0.55rem 1.4rem; font-size: 0.875rem; }
.fm-btn-lg { padding: 1.1rem 2.8rem; font-size: 1.1rem; }

/* --- Navbar --- */
.fm-navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--fm-transition);
}
.fm-navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 70px; max-width: 1400px; margin: 0 auto;
}
.fm-navbar-brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--fm-font-head); font-size: 1.6rem; font-weight: 800;
  letter-spacing: 0.04em; color: var(--fm-white);
}
.fm-navbar-brand span { color: var(--fm-red); }
.fm-navbar-logo-icon {
  width: 38px; height: 38px; background: var(--fm-red);
  border-radius: var(--fm-radius); display: flex; align-items: center; justify-content: center;
}
.fm-navbar-logo-icon i { font-size: 1.1rem; color: #fff; }
.fm-nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.fm-nav-link {
  font-family: var(--fm-font-head); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); padding: 0.5rem 0.9rem;
  border-radius: var(--fm-radius); transition: var(--fm-transition);
  position: relative;
}
.fm-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--fm-red); transition: var(--fm-transition);
}
.fm-nav-link:hover { color: var(--fm-white); }
.fm-nav-link:hover::after { width: 70%; }
.fm-nav-link.fm-active { color: var(--fm-white); }
.fm-nav-link.fm-active::after { width: 70%; }
.fm-nav-cta {
  background: var(--fm-red); color: #fff !important;
  padding: 0.5rem 1.2rem; border-radius: var(--fm-radius);
}
.fm-nav-cta:hover { background: var(--fm-red-dark); }
.fm-nav-cta::after { display: none; }
.fm-navbar-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--fm-white); font-size: 1.4rem;
}
.fm-navbar-mobile { display: none; }
.fm-navbar-mobile.fm-open {
  display: flex; flex-direction: column;
  background: var(--fm-dark); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
}
.fm-navbar-mobile .fm-nav-link {
  display: block; padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* --- Hero --- */
.fm-hero-dynamic {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--fm-black);
}
.fm-hero-bg {
  position: absolute; inset: 0;
  background: url('../images/banner.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.fm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 60%, rgba(192,57,43,0.15) 100%);
}
.fm-hero-grid-pattern {
  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: 60px 60px;
}
.fm-hero-content {
  position: relative; z-index: 2;
  padding: 8rem 0 5rem;
}
.fm-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.4);
  color: var(--fm-red-bright); font-family: var(--fm-font-head);
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.fm-hero-title { color: var(--fm-white); margin-bottom: 1.5rem; }
.fm-hero-title span { color: var(--fm-red-bright); }
.fm-hero-subtitle { color: rgba(255,255,255,0.68); max-width: 560px; margin-bottom: 2.5rem; font-size: 1.1rem; }
.fm-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.fm-hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2rem;
}
.fm-hero-stat-item {}
.fm-hero-stat-number {
  font-family: var(--fm-font-head); font-size: 2.5rem; font-weight: 800;
  color: var(--fm-white); line-height: 1;
}
.fm-hero-stat-number span { color: var(--fm-red-bright); }
.fm-hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.1em; }
.fm-hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.fm-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--fm-red), transparent);
  animation: fm-scroll-pulse 2s ease-in-out infinite;
}

/* --- Section Titles --- */
.fm-section-title-block { margin-bottom: 3rem; }
.fm-section-title-block.center { text-align: center; }
.fm-section-subtitle { font-size: 0.95rem; color: var(--fm-mid); max-width: 600px; margin: 0.75rem 0 0; }
.fm-section-title-block.center .fm-section-subtitle { margin: 0.75rem auto 0; }

/* --- Service Cards --- */
.fm-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.fm-service-card {
  background: var(--fm-white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--fm-radius-lg); padding: 2rem;
  transition: var(--fm-transition); position: relative; overflow: hidden;
}
.fm-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--fm-red); transition: var(--fm-transition);
}
.fm-service-card:hover { box-shadow: var(--fm-shadow); transform: translateY(-4px); }
.fm-service-card:hover::before { height: 100%; }
.fm-service-card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(192,57,43,0.1); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem; color: var(--fm-red);
  transition: var(--fm-transition);
}
.fm-service-card:hover .fm-service-card-icon { background: var(--fm-red); color: #fff; }
.fm-service-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.fm-service-card p { color: var(--fm-mid); font-size: 0.92rem; margin-bottom: 1rem; }
.fm-service-card-link {
  font-family: var(--fm-font-head); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--fm-red);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.fm-service-card-link i { transition: var(--fm-transition); }
.fm-service-card:hover .fm-service-card-link i { transform: translateX(4px); }

/* --- Dark Section --- */
.fm-bg-dark  { background: var(--fm-dark); color: var(--fm-white); }
.fm-bg-black { background: var(--fm-black); color: var(--fm-white); }
.fm-bg-charcoal { background: var(--fm-charcoal); color: var(--fm-white); }
.fm-bg-light { background: #f3f2ef; }
.fm-bg-dark h1, .fm-bg-dark h2, .fm-bg-dark h3, .fm-bg-dark h4 { color: var(--fm-white); }
.fm-bg-black h1, .fm-bg-black h2, .fm-bg-black h3 { color: var(--fm-white); }

/* --- Counters --- */
.fm-counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.fm-counter-item { text-align: center; }
.fm-counter-number {
  font-family: var(--fm-font-head); font-size: 3.5rem; font-weight: 800;
  color: var(--fm-white); line-height: 1;
}
.fm-counter-number .fm-counter-suffix { color: var(--fm-red-bright); }
.fm-counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.5rem; }

/* --- Testimonials --- */
.fm-testimonials-track { display: flex; gap: 1.5rem; }
.fm-testimonial-card {
  background: var(--fm-white); border-radius: var(--fm-radius-lg);
  padding: 2rem; flex: 0 0 360px; border: 1px solid rgba(0,0,0,0.07);
  position: relative;
}
.fm-testimonial-quote {
  font-size: 3rem; line-height: 1; color: var(--fm-red-bright);
  font-family: var(--fm-font-serif); margin-bottom: 0.5rem;
}
.fm-testimonial-text { font-family: var(--fm-font-serif); font-style: italic; color: var(--fm-charcoal); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.7; }
.fm-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.fm-testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--fm-steel); overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fm-font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--fm-white);
}
.fm-testimonial-name { font-weight: 600; font-size: 0.95rem; }
.fm-testimonial-location { font-size: 0.8rem; color: var(--fm-mid); }
.fm-testimonial-stars { color: var(--fm-amber); font-size: 0.82rem; margin-bottom: 0.25rem; }

.fm-carousel-wrapper { overflow: hidden; }
.fm-carousel-controls { display: flex; gap: 0.75rem; margin-top: 2rem; }
.fm-carousel-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.15);
  background: var(--fm-white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--fm-transition);
}
.fm-carousel-btn:hover { background: var(--fm-red); border-color: var(--fm-red); color: #fff; }

/* --- FAQ Accordion --- */
.fm-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.fm-faq-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; text-align: left;
  font-family: var(--fm-font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--fm-black); transition: color var(--fm-transition);
}
.fm-faq-trigger:hover { color: var(--fm-red); }
.fm-faq-trigger i { transition: transform var(--fm-transition); color: var(--fm-red); font-size: 0.85rem; }
.fm-faq-item.fm-open .fm-faq-trigger i { transform: rotate(180deg); }
.fm-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.fm-faq-answer-inner { padding-bottom: 1.25rem; color: var(--fm-steel); line-height: 1.75; }
.fm-faq-item.fm-open .fm-faq-answer { max-height: 400px; }

/* --- Team Cards --- */
.fm-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.fm-team-card {
  text-align: center; background: var(--fm-white);
  border-radius: var(--fm-radius-lg); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07); transition: var(--fm-transition);
}
.fm-team-card:hover { box-shadow: var(--fm-shadow); transform: translateY(-4px); }
.fm-team-card-photo {
  width: 100%; aspect-ratio: 1/1; overflow: hidden;
  background: var(--fm-steel); position: relative;
}
.fm-team-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fm-team-card:hover .fm-team-card-photo img { transform: scale(1.05); }
.fm-team-card-body { padding: 1.5rem; }
.fm-team-card-name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.fm-team-card-role { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fm-red); font-weight: 600; margin-bottom: 0.75rem; }
.fm-team-card-bio { font-size: 0.88rem; color: var(--fm-mid); line-height: 1.65; }

/* --- Before/After --- */
.fm-ba-wrapper {
  position: relative; overflow: hidden; border-radius: var(--fm-radius-lg);
  user-select: none; cursor: ew-resize;
}
.fm-ba-before, .fm-ba-after {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.fm-ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
.fm-ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 4px; background: #fff; z-index: 2; cursor: ew-resize;
}
.fm-ba-handle::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
}
.fm-ba-label {
  position: absolute; top: 1rem; font-family: var(--fm-font-head);
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,0,0,0.6); color: #fff; padding: 0.3rem 0.75rem; border-radius: 50px;
  z-index: 3;
}
.fm-ba-label-before { left: 1rem; }
.fm-ba-label-after { right: 1rem; }
.fm-ba-container { position: relative; height: 380px; }

/* --- Interactive Quiz / Tool --- */
.fm-quiz-wrap {
  background: var(--fm-dark); border-radius: var(--fm-radius-lg);
  padding: 2.5rem; border: 1px solid rgba(255,255,255,0.06);
}
.fm-quiz-title { color: var(--fm-white); margin-bottom: 0.5rem; font-size: 1.6rem; }
.fm-quiz-subtitle { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.9rem; }
.fm-quiz-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.fm-quiz-option {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--fm-radius); padding: 0.85rem 1rem;
  cursor: pointer; color: rgba(255,255,255,0.75); font-size: 0.9rem;
  transition: var(--fm-transition); display: flex; align-items: center; gap: 0.5rem;
}
.fm-quiz-option:hover { border-color: var(--fm-red); color: var(--fm-white); background: rgba(192,57,43,0.15); }
.fm-quiz-option.fm-selected { border-color: var(--fm-red); background: rgba(192,57,43,0.2); color: var(--fm-white); }
.fm-quiz-result {
  background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.35);
  border-radius: var(--fm-radius); padding: 1.25rem; color: var(--fm-white);
  display: none; margin-top: 1rem;
}
.fm-quiz-result.fm-visible { display: block; }
.fm-quiz-result h4 { color: var(--fm-red-bright); margin-bottom: 0.5rem; font-size: 1rem; }

/* --- Tips Slider --- */
.fm-tips-slider-wrap { overflow: hidden; }
.fm-tips-track { display: flex; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.fm-tip-card {
  flex: 0 0 100%; padding: 2.5rem;
  background: var(--fm-white); border-radius: var(--fm-radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex; gap: 2rem; align-items: flex-start;
}
.fm-tip-icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--fm-radius);
  background: var(--fm-red); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
}
.fm-tip-body h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.fm-tip-body p { color: var(--fm-mid); font-size: 0.93rem; }
.fm-slider-dots { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.fm-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.2); cursor: pointer; transition: var(--fm-transition);
}
.fm-slider-dot.fm-active { background: var(--fm-red); width: 24px; border-radius: 4px; }

/* --- Map Section --- */
.fm-map-embed iframe { width: 100%; height: 420px; border: 0; border-radius: var(--fm-radius-lg); filter: grayscale(20%); }

/* --- Contact Form --- */
.fm-form-group { margin-bottom: 1.25rem; }
.fm-form-label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--fm-charcoal); }
.fm-form-control {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.14); border-radius: var(--fm-radius);
  background: var(--fm-white); color: var(--fm-black);
  font-size: 0.95rem; transition: border-color var(--fm-transition);
  outline: none;
}
.fm-form-control:focus { border-color: var(--fm-red); }
.fm-form-control.fm-error { border-color: #e74c3c; }
.fm-form-error-msg { font-size: 0.78rem; color: #e74c3c; margin-top: 0.3rem; display: none; }
.fm-form-control.fm-error + .fm-form-error-msg { display: block; }
textarea.fm-form-control { resize: vertical; min-height: 130px; }
.fm-captcha-wrap { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; border: 1.5px solid rgba(0,0,0,0.14); border-radius: var(--fm-radius); cursor: pointer; background: var(--fm-white); transition: border-color var(--fm-transition); }
.fm-captcha-wrap:hover { border-color: var(--fm-red); }
.fm-captcha-checkbox { width: 20px; height: 20px; flex-shrink: 0; }
.fm-captcha-label { font-size: 0.9rem; }

/* --- Info Boxes --- */
.fm-info-box {
  display: flex; gap: 1rem; padding: 1.25rem;
  border-radius: var(--fm-radius); margin-bottom: 1rem;
}
.fm-info-box-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.fm-info-box.info { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); }
.fm-info-box.info .fm-info-box-icon { color: #3b82f6; }
.fm-info-box.warning { background: rgba(217,119,6,0.08); border: 1px solid rgba(217,119,6,0.2); }
.fm-info-box.warning .fm-info-box-icon { color: var(--fm-amber); }

/* --- Footer --- */
.fm-footer { background: var(--fm-black); padding: 4rem 0 2rem; }
.fm-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.fm-footer-brand { font-family: var(--fm-font-head); font-size: 1.5rem; font-weight: 800; color: var(--fm-white); margin-bottom: 1rem; }
.fm-footer-brand span { color: var(--fm-red); }
.fm-footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.5rem; }
.fm-footer-social { display: flex; gap: 0.75rem; }
.fm-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--fm-transition);
}
.fm-footer-social a:hover { background: var(--fm-red); border-color: var(--fm-red); color: #fff; }
.fm-footer-col-title { font-family: var(--fm-font-head); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fm-red); font-weight: 600; margin-bottom: 1.25rem; }
.fm-footer-links li { margin-bottom: 0.6rem; }
.fm-footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--fm-transition); }
.fm-footer-links a:hover { color: var(--fm-white); }
.fm-footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.fm-footer-contact-icon { color: var(--fm-red); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; }
.fm-footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.fm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.75rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.fm-footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.fm-footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.fm-footer-legal-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color var(--fm-transition); }
.fm-footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* --- Cookie Banner --- */
.fm-cookie-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--fm-dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--fm-radius-lg); padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  box-shadow: var(--fm-shadow-lg); max-width: 900px; margin: 0 auto;
  transition: var(--fm-transition); transform: translateY(100px); opacity: 0;
}
.fm-cookie-banner.fm-visible { transform: translateY(0); opacity: 1; }
.fm-cookie-text { flex: 1; font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.fm-cookie-text a { color: var(--fm-red-bright); text-decoration: underline; }
.fm-cookie-actions { display: flex; gap: 0.75rem; }
.fm-cookie-accept { background: var(--fm-red); color: #fff; border: none; padding: 0.65rem 1.5rem; border-radius: var(--fm-radius); cursor: pointer; font-family: var(--fm-font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; transition: var(--fm-transition); }
.fm-cookie-accept:hover { background: var(--fm-red-dark); }
.fm-cookie-decline { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); padding: 0.65rem 1.2rem; border-radius: var(--fm-radius); cursor: pointer; font-size: 0.85rem; transition: var(--fm-transition); }
.fm-cookie-decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }

/* --- SVG Dividers --- */
.fm-divider-wave { position: relative; overflow: hidden; line-height: 0; }
.fm-divider-wave svg { display: block; width: 100%; }

/* --- CTA Strip --- */
.fm-cta-strip { background: var(--fm-red); padding: 4rem 0; }
.fm-cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.fm-cta-strip h2 { color: #fff; }
.fm-cta-strip p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; }

/* --- Articles / Blog --- */
.fm-article-card {
  background: var(--fm-white); border-radius: var(--fm-radius-lg);
  border: 1px solid rgba(0,0,0,0.07); overflow: hidden; transition: var(--fm-transition);
}
.fm-article-card:hover { box-shadow: var(--fm-shadow); transform: translateY(-4px); }
.fm-article-card-img { aspect-ratio: 16/9; overflow: hidden; }
.fm-article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fm-article-card:hover .fm-article-card-img img { transform: scale(1.05); }
.fm-article-card-body { padding: 1.5rem; }
.fm-article-card-tag { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fm-red); font-weight: 600; margin-bottom: 0.5rem; }
.fm-article-card-title { font-size: 1.2rem; margin-bottom: 0.6rem; transition: color var(--fm-transition); }
.fm-article-card:hover .fm-article-card-title { color: var(--fm-red); }
.fm-article-card-excerpt { font-size: 0.88rem; color: var(--fm-mid); margin-bottom: 1rem; line-height: 1.65; }
.fm-article-card-meta { font-size: 0.78rem; color: var(--fm-mid); }

/* --- Page Hero (interior pages) --- */
.fm-page-hero {
  padding: 8rem 0 4rem; background: var(--fm-black);
  position: relative; overflow: hidden;
}
.fm-page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.25;
}
.fm-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.55) 100%);
}
.fm-page-hero-content { position: relative; z-index: 2; }
.fm-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.fm-breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--fm-transition); }
.fm-breadcrumb a:hover { color: var(--fm-white); }
.fm-breadcrumb i { font-size: 0.6rem; }

/* --- Business Hours --- */
.fm-hours-table { width: 100%; border-collapse: collapse; }
.fm-hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
.fm-hours-table td { padding: 0.75rem 0; font-size: 0.9rem; }
.fm-hours-table td:last-child { text-align: right; color: var(--fm-mid); }
.fm-hours-table tr.fm-today td { color: var(--fm-red); font-weight: 600; }
.fm-hours-table tr.fm-today td:last-child { color: var(--fm-red); }

/* --- Timeline --- */
.fm-timeline { position: relative; padding-left: 2rem; }
.fm-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(0,0,0,0.1); }
.fm-timeline-item { position: relative; margin-bottom: 2.5rem; }
.fm-timeline-dot {
  position: absolute; left: -2.5rem; top: 0.3rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--fm-red); border: 3px solid var(--fm-white);
  box-shadow: 0 0 0 2px var(--fm-red);
}
.fm-timeline-year { font-family: var(--fm-font-head); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fm-red); font-weight: 600; margin-bottom: 0.25rem; }
.fm-timeline-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.fm-timeline-text { font-size: 0.9rem; color: var(--fm-mid); }

/* --- Values Grid --- */
.fm-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.fm-value-card { padding: 1.75rem; border-radius: var(--fm-radius); background: var(--fm-bg-light); border: 1px solid rgba(0,0,0,0.07); }
.fm-value-icon { font-size: 1.6rem; color: var(--fm-red); margin-bottom: 0.75rem; }
.fm-value-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.fm-value-card p { font-size: 0.88rem; color: var(--fm-mid); }

/* --- Noise Reducer / Strip --- */
.fm-red-strip { background: var(--fm-red); height: 4px; }

/* --- Article Page --- */
.fm-article-body h2 { font-size: 1.7rem; margin: 2.5rem 0 0.75rem; }
.fm-article-body h3 { font-size: 1.3rem; margin: 2rem 0 0.6rem; }
.fm-article-body p { margin-bottom: 1.2rem; color: var(--fm-charcoal); font-size: 1.02rem; line-height: 1.8; }
.fm-article-body ul, .fm-article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.fm-article-body li { margin-bottom: 0.5rem; color: var(--fm-charcoal); font-size: 1rem; }
.fm-article-body ul { list-style: disc; }
.fm-article-body ol { list-style: decimal; }
.fm-article-body img { border-radius: var(--fm-radius); margin: 2rem 0; width: 100%; }
.fm-article-body blockquote {
  border-left: 4px solid var(--fm-red); padding: 1rem 1.5rem;
  background: rgba(192,57,43,0.05); border-radius: 0 var(--fm-radius) var(--fm-radius) 0;
  margin: 1.5rem 0; font-family: var(--fm-font-serif); font-style: italic;
}
.fm-article-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
.fm-article-meta-item { font-size: 0.82rem; color: var(--fm-mid); display: flex; align-items: center; gap: 0.35rem; }
.fm-article-sidebar { position: sticky; top: 90px; }

/* --- Legal Pages --- */
.fm-legal-body h2 { font-size: 1.4rem; margin: 2.5rem 0 0.7rem; }
.fm-legal-body h3 { font-size: 1.15rem; margin: 1.75rem 0 0.5rem; }
.fm-legal-body p { margin-bottom: 1rem; color: var(--fm-charcoal); line-height: 1.8; font-size: 0.97rem; }
.fm-legal-body ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.fm-legal-body li { margin-bottom: 0.5rem; color: var(--fm-charcoal); font-size: 0.97rem; }
.fm-legal-updated { font-size: 0.8rem; color: var(--fm-mid); margin-bottom: 2rem; }

/* --- Thank You --- */
.fm-thankyou-wrap {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 6rem 1.5rem;
}
.fm-thankyou-card {
  max-width: 560px; text-align: center; padding: 3rem;
  background: var(--fm-white); border-radius: var(--fm-radius-lg);
  box-shadow: var(--fm-shadow-lg); border: 1px solid rgba(0,0,0,0.06);
}
.fm-thankyou-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(192,57,43,0.1); color: var(--fm-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin: 0 auto 1.5rem;
}

/* --- Scroll Reveal --- */
.fm-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fm-reveal.fm-in-view { opacity: 1; transform: translateY(0); }
.fm-reveal-delay-1 { transition-delay: 0.1s; }
.fm-reveal-delay-2 { transition-delay: 0.2s; }
.fm-reveal-delay-3 { transition-delay: 0.3s; }
.fm-reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .fm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .fm-nav-links { display: none; }
  .fm-navbar-toggle { display: block; }
  .fm-hero-stats { gap: 1.5rem; }
  .fm-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .fm-footer-bottom { flex-direction: column; text-align: center; }
  .fm-cta-strip-inner { flex-direction: column; text-align: center; }
  .fm-tip-card { flex-direction: column; }
  .fm-cookie-banner { flex-direction: column; }
}
@media (max-width: 575px) {
  .fm-hero-actions { flex-direction: column; }
  .fm-btn { justify-content: center; }
}


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

html{
  overflow-x: hidden;
}