/**
 * Fahad Transport — Main stylesheet
 * Fahad Transport — light & heavy trucks, UAE HQ, Arab-region: soft palette, glassmorphism, motion
 */

/* --------------------------------------------------------------------------
   CSS variables — soft elegant palette + typography
   -------------------------------------------------------------------------- */
:root {
  --ft-white: #ffffff;
  --ft-cream: #f6f8fc;
  --ft-mist: #eef2f9;
  --ft-ice: #e4ebf5;
  --ft-slate-400: #8b9bb4;
  --ft-slate-600: #5a6b82;
  --ft-slate-800: #2c3a4f;
  --ft-navy: #1a2b45;
  --ft-blue-400: #6b9bd4;
  --ft-blue-500: #4a7fc4;
  --ft-blue-600: #3d6bab;
  --ft-gold: #c9a227;
  --ft-gold-soft: #e8d48a;
  --ft-gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e8f0fb 45%, #f5f0e4 100%);
  --ft-gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  --ft-shadow-sm: 0 4px 24px rgba(26, 43, 69, 0.06);
  --ft-shadow-md: 0 12px 40px rgba(26, 43, 69, 0.1);
  --ft-shadow-lg: 0 24px 64px rgba(26, 43, 69, 0.14);
  --ft-radius: 1.25rem;
  --ft-radius-sm: 0.875rem;
  --ft-font-display: "Poppins", system-ui, sans-serif;
  --ft-font-body: "Inter", system-ui, sans-serif;
  --ft-transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Base & reset tweaks
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ft-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ft-slate-800);
  background: var(--ft-gradient-hero);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ft-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ft-navy);
}

.display-hero {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.section-subtitle {
  max-width: 38rem;
  color: var(--ft-slate-600);
  font-size: 1.05rem;
}

.lead-soft {
  color: var(--ft-slate-600);
  font-size: 1.125rem;
}

.text-gold {
  color: var(--ft-gold) !important;
}

.text-navy {
  color: var(--ft-navy) !important;
}

/* Hero rotating keyword — width stabilizes layout between words */
.ft-hero-keyword {
  display: inline-block;
  min-width: 7ch;
  vertical-align: bottom;
}

/* Hero lead — alternating "18 Years…" / "Since 2009" */
.ft-hero-expertise {
  display: inline-block;
  min-width: 16ch;
  vertical-align: bottom;
}

/* Light vs heavy truck category pills (fleet & cards) */
.ft-truck-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.4rem;
  background: rgba(74, 127, 196, 0.14);
  color: var(--ft-blue-600);
}

.ft-truck-pill--heavy {
  background: rgba(26, 43, 69, 0.12);
  color: var(--ft-navy);
}

.ft-truck-pill--mixed {
  background: rgba(201, 162, 39, 0.16);
  color: #9a7a18;
}

/* Services we provide — equipment chips (home + services) */
.ft-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.ft-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ft-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 235, 245, 0.95);
  box-shadow: var(--ft-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ft-service-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--ft-shadow-md);
  border-color: rgba(74, 127, 196, 0.28);
}

.ft-service-chip i {
  font-size: 1.05rem;
  color: var(--ft-blue-500);
}

.ft-section--chips {
  background: linear-gradient(180deg, rgba(238, 242, 249, 0.35), transparent);
}

/* Countries we operate in — flag + name chips */
.ft-country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.ft-country-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ft-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(228, 235, 245, 0.95);
  box-shadow: var(--ft-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ft-country-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--ft-shadow-md);
  border-color: rgba(74, 127, 196, 0.28);
}

/* PNG flags via CDN (emoji flags often render as letters on Windows) */
.ft-country-chip__flag {
  width: 40px;
  height: 30px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(26, 43, 69, 0.15);
}

.ft-section--chips-divider {
  border-top: 1px solid rgba(26, 43, 69, 0.08);
  margin-top: 2.5rem;
  padding-top: 2rem;
}

/* Anchor offset for sticky navbar (e.g. services.html#fleet) */
#fleet {
  scroll-margin-top: 5.5rem;
}

/* --------------------------------------------------------------------------
   Page loader
   -------------------------------------------------------------------------- */
.ft-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f8fafc 0%, #e4ebf5 50%, #faf6eb 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.ft-loader.ft-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ft-loader__inner {
  text-align: center;
}

.ft-loader__mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid var(--ft-ice);
  border-top-color: var(--ft-blue-500);
  border-right-color: var(--ft-gold);
  animation: ft-spin 0.9s linear infinite;
}

.ft-loader__text {
  font-family: var(--ft-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ft-slate-600);
}

@keyframes ft-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------------------------------------
   Navbar — glass sticky
   -------------------------------------------------------------------------- */
.ft-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 0 rgba(26, 43, 69, 0.04);
  transition: padding var(--ft-transition), box-shadow var(--ft-transition),
    background var(--ft-transition);
}

.ft-navbar.ft-navbar--scrolled {
  padding: 0.45rem 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ft-shadow-sm);
}

/* Ensure hamburger icon reads on light glass navbar */
.ft-navbar .navbar-toggler {
  border-radius: 12px;
  border-color: rgba(26, 43, 69, 0.12) !important;
}

.ft-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(74, 127, 196, 0.25);
}

.ft-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ft-navy) !important;
  font-family: var(--ft-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  transition: transform 0.25s ease;
}

.ft-brand:hover {
  transform: translateY(-1px);
  color: var(--ft-navy) !important;
}

.ft-brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ft-blue-500), var(--ft-navy));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(74, 127, 196, 0.35);
}

.ft-nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ft-slate-600) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--ft-radius-sm);
  transition: color var(--ft-transition), background var(--ft-transition);
}

.ft-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ft-blue-500), var(--ft-gold));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--ft-transition);
}

.ft-nav-link:hover,
.ft-nav-link:focus {
  color: var(--ft-navy) !important;
  background: rgba(74, 127, 196, 0.06);
}

.ft-nav-link:hover::after,
.ft-nav-link.ft-nav-link--active::after {
  width: 60%;
}

.ft-nav-link.ft-nav-link--active {
  color: var(--ft-navy) !important;
  background: rgba(74, 127, 196, 0.08);
}

.btn-ft-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: linear-gradient(135deg, var(--ft-blue-500), var(--ft-blue-600));
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: var(--ft-navy);
  --bs-btn-hover-border-color: var(--ft-navy);
  font-family: var(--ft-font-display);
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--ft-blue-500), var(--ft-navy));
  box-shadow: 0 8px 28px rgba(74, 127, 196, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-ft-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26, 43, 69, 0.25);
}

/* Current page when nav item is the quote CTA */
.btn-ft-primary.ft-cta--here {
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.45), 0 8px 28px rgba(74, 127, 196, 0.35);
}

.btn-ft-outline {
  font-family: var(--ft-font-display);
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(74, 127, 196, 0.35);
  color: var(--ft-navy);
  background: rgba(255, 255, 255, 0.6);
  transition: var(--ft-transition);
}

.btn-ft-outline:hover {
  border-color: var(--ft-gold);
  background: rgba(201, 162, 39, 0.08);
  color: var(--ft-navy);
}

/* Mobile nav touch targets */
@media (max-width: 991.98px) {
  .navbar-nav .ft-nav-link {
    padding: 0.75rem 1rem !important;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid rgba(26, 43, 69, 0.06);
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.ft-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.ft-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/header-image.avif");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: ft-hero-ken 22s ease-in-out infinite alternate;
}

.ft-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(248, 250, 252, 0.94) 0%,
    rgba(232, 240, 251, 0.82) 38%,
    rgba(26, 43, 69, 0.45) 100%
  );
}

.ft-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, var(--ft-navy) 1px, transparent 0);
  background-size: 32px 32px;
}

@keyframes ft-hero-ken {
  from {
    transform: scale(1.02) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.ft-hero__content {
  position: relative;
  z-index: 2;
}

.ft-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-blue-600);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--ft-shadow-sm);
}

.ft-hero__cta .btn {
  min-height: 48px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   Glass & neumorphic cards
   -------------------------------------------------------------------------- */
.ft-glass {
  background: var(--ft-gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--ft-radius);
  box-shadow: var(--ft-shadow-md);
  transition: transform var(--ft-transition), box-shadow var(--ft-transition);
}

.ft-glass:hover {
  transform: translateY(-6px);
  box-shadow: var(--ft-shadow-lg);
}

.ft-card-soft {
  background: var(--ft-white);
  border-radius: var(--ft-radius);
  border: 1px solid rgba(228, 235, 245, 0.9);
  box-shadow: var(--ft-shadow-sm);
  transition: transform var(--ft-transition), box-shadow var(--ft-transition), border-color 0.3s ease;
}

.ft-card-soft:hover {
  transform: translateY(-8px);
  box-shadow: var(--ft-shadow-lg);
  border-color: rgba(74, 127, 196, 0.25);
}

.ft-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(145deg, #fff, var(--ft-mist));
  box-shadow: 6px 6px 16px rgba(26, 43, 69, 0.06), -4px -4px 12px rgba(255, 255, 255, 0.9);
  color: var(--ft-blue-600);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ft-card-soft:hover .ft-icon-wrap {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 8px 8px 20px rgba(74, 127, 196, 0.15);
}

.ft-icon-wrap--gold {
  color: var(--ft-gold);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.ft-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.ft-section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 242, 249, 0.65));
}

.ft-divider-gold {
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--ft-blue-500), var(--ft-gold));
}

/* Scroll reveal */
.ft-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ft-transition), transform 0.7s var(--ft-transition);
}

.ft-reveal.ft-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Fleet preview / cards
   -------------------------------------------------------------------------- */
.ft-fleet-thumb {
  border-radius: calc(var(--ft-radius) - 4px);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ft-fleet-thumb img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s ease;
}

.ft-card-soft:hover .ft-fleet-thumb img {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   Testimonials — carousel polish
   -------------------------------------------------------------------------- */
.ft-testimonial {
  padding: 2rem 2.5rem;
}

.ft-testimonial__quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ft-slate-600);
}

.ft-testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201, 162, 39, 0.35);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--ft-blue-400);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(35%) sepia(15%) saturate(1200%) hue-rotate(175deg);
}

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.ft-cta-banner {
  position: relative;
  border-radius: var(--ft-radius);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
  background: linear-gradient(125deg, var(--ft-navy) 0%, #243a5c 50%, var(--ft-blue-600) 100%);
  color: #fff;
  box-shadow: var(--ft-shadow-lg);
}

.ft-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 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='0.04'%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");
  opacity: 0.9;
  pointer-events: none;
}

.ft-cta-banner h2,
.ft-cta-banner p {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.ft-footer {
  background: linear-gradient(180deg, var(--ft-navy) 0%, #0f1826 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
}

.ft-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.ft-footer a:hover {
  color: var(--ft-gold-soft);
  padding-left: 4px;
}

.ft-footer__brand {
  font-family: var(--ft-font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
}

.ft-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  margin-right: 0.5rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.ft-social a:hover {
  background: rgba(201, 162, 39, 0.25);
  transform: translateY(-3px);
  padding-left: 0;
}

.ft-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Scroll to top
   -------------------------------------------------------------------------- */
.ft-scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1020;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ft-blue-500), var(--ft-navy));
  color: #fff;
  box-shadow: var(--ft-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.ft-scroll-top.ft-scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ft-scroll-top:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.ft-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ft-slate-800);
}

.ft-form .form-control,
.ft-form .form-select {
  border-radius: var(--ft-radius-sm);
  border: 1px solid var(--ft-ice);
  padding: 0.65rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ft-form .form-control:focus,
.ft-form .form-select:focus {
  border-color: var(--ft-blue-400);
  box-shadow: 0 0 0 4px rgba(74, 127, 196, 0.15);
}

.ft-form .is-invalid {
  border-color: #dc3545;
}

.ft-form .invalid-feedback {
  font-size: 0.85rem;
}

/* Map embed */
.ft-map {
  border-radius: var(--ft-radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--ft-shadow-md);
  border: 1px solid var(--ft-ice);
}

.ft-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* --------------------------------------------------------------------------
   Page header (inner pages)
   -------------------------------------------------------------------------- */
.ft-page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #e8f0fb 0%, #f5f0e4 50%, #eef2f9 100%);
  overflow: hidden;
}

.ft-page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(74, 127, 196, 0.12), transparent 65%);
  pointer-events: none;
}

/* Stats */
.ft-stat {
  text-align: center;
  padding: 1.75rem 1rem;
}

.ft-stat__num {
  font-family: var(--ft-font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--ft-navy), var(--ft-blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.ft-stat__label {
  font-size: 0.95rem;
  color: var(--ft-slate-600);
  margin-top: 0.35rem;
}

/* Service grid hover line */
.ft-service-card {
  position: relative;
  overflow: hidden;
}

.ft-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--ft-gold), var(--ft-blue-500));
  transition: height 0.45s ease;
}

.ft-service-card:hover::before {
  height: 100%;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ft-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .ft-hero__bg {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
