/* ============================================
   Main Content
   ============================================ */

.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Honeypot — off-screen rather than display:none so bots that ignore
   display:none still find and fill it. Hidden from sighted users,
   screen readers (aria-hidden on parent), and keyboard tab order. */
.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ============================================
   Navigation — White with blur on scroll
   ============================================ */

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-body);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar--scrolled,
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 150ms ease;
  color: inherit;
}

.navbar-logo:hover { opacity: 0.85; }

.navbar-icon {
  height: 48px;
  width: 48px;
  display: block;
  flex-shrink: 0;
}

.navbar-icon--dark { display: none; }

[data-theme="dark"] .navbar-icon--light { display: none; }
[data-theme="dark"] .navbar-icon--dark { display: block; }

/* Wordmark lockup: cross + "Ride N' Safe" + "Non-Emergency Transport" in one SVG.
   Renders at the SVG's intrinsic size (384x96 from width/height attrs). */
.navbar-wordmark {
  display: block;
  flex-shrink: 0;
}

.navbar-wordmark--dark { display: none; }

[data-theme="dark"] .navbar-wordmark--light { display: none; }
[data-theme="dark"] .navbar-wordmark--dark { display: block; }

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) .navbar-wordmark--light { display: none; }
  html:not([data-theme]) .navbar-wordmark--dark { display: block; }
}

.navbar-brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.navbar-brand__name {
  font-family: var(--font-body);
  font-weight: 900;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--brand-orange);
  white-space: nowrap;
}

.navbar-brand__tagline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--text-heading);
  margin-top: 2px;
  white-space: nowrap;
}

[data-theme="dark"] .navbar-brand__name { color: var(--brand-orange); }
[data-theme="dark"] .navbar-brand__tagline { color: var(--text-on-dark); }

@media (max-width: 480px) {
  .navbar-brand__tagline { display: none; }
  .navbar-brand__name { font-size: 1.15rem; }
  .navbar-icon { height: 40px; width: 40px; }
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.3);
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  position: relative;
  align-items: center;
}

.nav-item > a {
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  padding: 24px 0;
  display: inline-block;
  transition: color 0.15s;
}

.nav-item > a:hover {
  color: var(--primary-orange);
}

.navbar a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Nav CTA Button — higher specificity to override .nav-item > a */
.navbar-menu .nav-cta {
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.navbar-menu .nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

/* Theme Toggle — single icon button; sun shows in light, moon shows in dark */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 50%;
  color: var(--gray-700);
  cursor: pointer;
  transition: color 0.15s var(--ease-out), background 0.15s var(--ease-out);
}

.theme-toggle:hover {
  color: var(--primary-orange);
  background: var(--gray-100);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
}

/* Show sun in light theme, moon in dark theme */
.theme-toggle__icon--moon { display: none; }
[data-theme="dark"] .theme-toggle__icon--sun { display: none; }
[data-theme="dark"] .theme-toggle__icon--moon { display: inline; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--white);
  display: none;
  grid-template-columns: repeat(2, 1fr);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  z-index: 999;
}

.dropdown-section {
  margin-bottom: 16px;
  list-style: none;
  display: block;
  gap: 0.5rem;
  z-index: 998;
}

.dropdown-section:last-child {
  margin-bottom: 0;
}

.dropdown-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 600;
}

.dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown ul li a {
  display: block;
  padding: 6px 0;
  color: var(--gray-800);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: color 0.15s;
}

.dropdown ul li a:hover {
  color: var(--primary-orange);
}

.dropdown-section ul {
    padding: 0 0 0 1rem;
    z-index: 997;
}

/* Open state */
.has-dropdown.open > .dropdown {
  display: grid;
  z-index: 997;
}

.has-dropdown.open > a {
    color: var(--primary-orange);
    z-index: 998;
}

/* ============================================
   Mobile Menu Toggle
   ============================================ */

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Legacy Hero Classes (used by subpages)
   ============================================ */

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding) var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 103, 0, 0.1);
    color: var(--primary-orange);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ============================================
   Legacy Stats Classes (used by subpages)
   ============================================ */

.stats {
    color: white;
    padding: 4rem 0;
}

.wave-top > svg {
    display: block;
    rotate: 180deg;
}

/* ============================================
   Feature List
   ============================================ */

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.feature-list li a {
  color: var(--primary-orange);
  font-weight: 600;
}

.feature-list li a:hover {
  color: var(--primary-dark);
}

/* ============================================
   Text Link
   ============================================ */

.text-link {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s;
}

.text-link:hover {
  color: var(--primary-dark);
}

.text-link::after {
  content: '\2192';
  transition: transform 0.2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   Homepage: Audience Section (v2)
   ============================================ */

.audience-section {
  background: var(--surface-warm);
}

.audience-header {
  margin-bottom: var(--space-12);
}

.audience-header p {
  max-width: 640px;
  margin-inline: auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: var(--space-8);
  justify-content: center;
}

.audience-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid transparent;
  box-shadow: var(--shadow-resting);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.audience-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(255, 103, 0, 0.1);
}

.audience-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 103, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}

.audience-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0;
}

.audience-card__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* ============================================
   Homepage: Coverage Section
   ============================================ */

.coverage-section {
  background: var(--surface-warm-light);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.coverage-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.coverage-content p {
  max-width: 500px;
}

.coverage-search {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.coverage-search__box {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--surface-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.9375rem;
  flex: 1;
  min-width: 200px;
}

.coverage-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-map__visual {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================
   Homepage: Trust Bar + Stats
   ============================================ */

.trust-stats-section {
  background: var(--surface-dark);
  padding-block: var(--section-padding);
  color: var(--text-on-dark);
}

.trust-bar {
  text-align: center;
  margin-bottom: var(--space-12);
}

.trust-bar__label {
  color: var(--text-on-dark-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo__text {
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ============================================
   Homepage: Services Section
   ============================================ */

.services-section {
  background: var(--surface-warm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: var(--space-8);
  margin-top: var(--space-12);
  justify-content: center;
}

.service-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid transparent;
  box-shadow: var(--shadow-resting);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(255, 103, 0, 0.1);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-coral));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-white);
  box-shadow: 0 4px 12px rgba(255, 103, 0, 0.2);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* ============================================
   Homepage: Fleet Section
   ============================================ */

.fleet-section {
  background: var(--surface-dark);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.fleet-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.fleet-card:hover {
  background: var(--surface-dark);
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

.fleet-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 103, 0, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}

.fleet-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0;
}

.fleet-card__desc {
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   Homepage: Testimonials Section
   ============================================ */

.testimonials-section {
  background: var(--surface-warm-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-12);
}

/* Reviews marquee — horizontal scroll of testimonial cards */
.review-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: var(--space-12);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
          mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.review-marquee__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  animation: review-marquee-scroll 40s linear infinite;
}
.review-marquee:hover .review-marquee__track {
  animation-play-state: paused;
}
.review-marquee .testimonial-card {
  flex: 0 0 380px;
  width: 380px;
  margin: 4px var(--space-6) 4px 0;  /* gap-equivalent right margin so the duplicate set lines up exactly with the original set at translate -50% */
}
@keyframes review-marquee-scroll {
  /* Translate by exactly 3 card-units (380px card + 24px right margin) so the
     duplicate set lands precisely where the original set started. translate3d
     forces a GPU compositor layer so the loop reset doesn't repaint. */
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * (380px + var(--space-6)) * 3), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee { -webkit-mask-image: none; mask-image: none; }
  .review-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .review-marquee__track > [aria-hidden="true"] { display: none; }
}

.testimonial-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid transparent;
  box-shadow: var(--shadow-resting);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testimonial-card__stars {
  color: var(--brand-yellow);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--gray-200);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-white);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-heading);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   Homepage: Final CTA Section
   ============================================ */

.final-cta-section {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-hover));
  padding-block: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.final-cta__title {
  color: var(--surface-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.final-cta__desc {
  color: var(--text-on-dark-hero);
  font-size: 1.125rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

/* ============================================
   Solutions Page
   ============================================ */

/* NEMT section — warm-white background */
.solutions-nemt {
  background: var(--surface-warm);
}

/* Managed Services section — white background */
.solutions-managed {
  background: var(--surface-white);
}

/* Training section — warm-light background */
.solutions-training {
  background: var(--surface-warm-light);
}

/* Two-column split layout for NEMT and Training */
.solutions-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.solutions-split > * {
  min-width: 0;
}

.solutions-split__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.solutions-split__text h2 {
  margin-bottom: 0;
}

.solutions-split__text p {
  margin-bottom: 0;
}

/* Three-card grid for Managed Services */
.solutions-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.solutions-card-grid > .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.solutions-card-grid > .card p {
  flex-grow: 1;
}

/* Responsive: solutions layouts */
@media (max-width: 1024px) {
  .solutions-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .solutions-card-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   Social Media Feeds (Newsroom)
   ============================================ */

.social-feeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  align-items: start;
}

@media (max-width: 1024px) {
  .social-feeds {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .social-feeds {
    grid-template-columns: 1fr;
  }
}

.social-feed {
  background: var(--surface-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.social-feed__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--gray-200);
}

.social-feed__header svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.social-feed__header h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading);
  margin: 0;
}

.social-feed__content {
  padding: var(--space-4);
  display: flex;
  justify-content: center;
  min-height: 300px;
}

.social-feed__content--instagram {
  padding: var(--space-4);
}

.social-feed__content--instagram .instagram-media {
  margin: 0 !important;
}

/* LinkedIn custom card (no official embed) */
.linkedin-card {
  text-align: center;
  padding: var(--space-6);
  width: 100%;
}

.linkedin-card__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: 8px;
  overflow: hidden;
}

.linkedin-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linkedin-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}

.linkedin-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.linkedin-card__followers {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: var(--space-6);
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.625rem 1.5rem;
  background: #0A66C2;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-linkedin:hover {
  background: #004182;
  color: #fff;
}

.btn-linkedin svg {
  color: #fff;
}

.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.625rem 1.5rem;
  background: #1877F2;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-facebook:hover {
  background: #0d65d9;
  color: #fff;
}

.btn-facebook svg {
  color: #fff;
}
