body {
  font-family: 'Inter', sans-serif !important;
  background: var(--fws-steel);
  color: #f5f5f5 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif !important;
  letter-spacing: -0.02em;
}

/* Header & Navigation */

.nav-link {
  color: #f5f5f5 !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

/* Page Header */

.page-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(211, 83, 8, 0.3)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  position: relative;
  margin-bottom: 4rem;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF6B35, transparent);
}

/* Content Sections */

.content-section:nth-child(even) {
  background: #1a1a1a;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #FF6B35;
  margin-bottom: 2rem;
}

/* Safety Pillars */

/* Stats Grid */

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #10B981;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Certifications Grid */

/* Commitment Box */

/* Image Placeholder */

.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
  border: 2px dashed rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  text-align: center;
  padding: 2rem;
}

/* Footer */

footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  padding: 3rem 0 1.5rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35, #004E89, #FF6B35);
}

footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #FF6B35 !important;
  transform: translateX(4px);
}

.footer-call {
  color: #FF6B35;
  transform: translateY(5px);
}

/* Responsive */

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 4rem;
  }
}

/* ===== NAVIGATION (navx.css) ===== */

/* ========================== 
   SOURCE: navx.css
   ========================== */

/* ============================================
   FRANKLIN WELL SERVICES - SPACEX NAV STYLE
   ============================================ */

/* Main Navbar - Glass Effect */

.fws-navbar {
  background: rgba(10, 10, 10, 0.4) !important;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, padding 0.3s ease;
  z-index: 1050;
}

.fws-navbar.hide-nav {
  transform: translateY(-110%);
  transition: transform 0.25s ease;
}

/* Scrolled state - more solid */

/* Hide on scroll down */

/* Logo */

.fws-nav-logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .fws-nav-logo {
  transform: scale(1.05);
}

/* Navigation Links */

.fws-navbar .navbar-nav .nav-link {
  color: var(--fws-light) !important;
  opacity: 0.9;
  padding: 0.75rem 1.25rem !important;
  position: relative;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.fws-navbar .navbar-nav .nav-link:hover, .fws-navbar .navbar-nav .nav-link:focus {
  opacity: 1;
  color: var(--fws-orange) !important;
}

/* Underline effect */

.fws-navbar .navbar-nav .nav-link:hover::after, .fws-navbar .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* Active state */

.fws-navbar .navbar-nav .nav-link.active {
  color: var(--fws-orange) !important;
  opacity: 1;
}

/* Mobile Menu */

@media (max-width: 991.98px) {
  .fws-navbar .navbar-nav {
    padding: 0.5rem 0;
  }
}

@media (max-width: 991.98px) {
  .fws-navbar .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin: 0.25rem 0;
  }
}

@media (max-width: 991.98px) {
  .fws-navbar .navbar-nav .nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
  }
}

@media (max-width: 991.98px) {
  .fws-navbar .navbar-nav .nav-link::after {
    display: none;
  }
}

/* Mobile Toggle Button */

.fws-navbar .navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.fws-navbar .navbar-toggler:hover {
  background: rgba(255, 107, 53, 0.1);
}

.fws-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.fws-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 245, 245, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card-emergency-heading {
  color: var(--fws-orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-emergency {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
}

.contact-link {
  color: var(--fws-orange);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.feature-link {
  color: var(--fws-orange);
  text-decoration: none;
  font-weight: 600;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ========================================
   STATS & NUMBERS
   ======================================== */

/* ========================================
   LISTS & BENEFITS
   ======================================== */

/* ========================================
   TIMELINE
   ======================================== */

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */

/* ========================================
   APPLICATIONS & TAGS
   ======================================== */

/* ========================================
   CTA SECTIONS
   ======================================== */

/* ========================================
   FOOTER
   ======================================== */

/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade in animation */

/* Slide in from left */

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Smooth scrolling */

/* Selection color */

/* Full-bleed video hero */

/* Respect users who prefer reduced motion: show poster instead of playing video */

/* ===== PAGE-SPECIFIC OVERRIDES (add as needed) ===== */

/* Example:
   [about]
   .about-hero { min-height: 60vh; } */

/* ===== JOBS PAGE STYLING ===== */

.job-listing {
  background: #191919;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
  transition: all 0.25s ease-in-out;
}

.job-listing:hover {
  transform: translateY(-4px);
  background: #202020;
}

.job-listing h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* CTA box at bottom */

/* ===== FIX: Benefits Cards (used on Jobs and About pages) ===== */

.feature-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

/* benefit-card replaces feature-card */

.benefit-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  transition: transform 0.25s ease, background 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: #222;
}

.benefit-card h3 {
  color: var(--fws-orange, #ff6b35);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* for links in cards */

/* Fix for culture/values tags if used */

.applications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ===== BENEFIT ICON ===== */

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #f5f5f5;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background-color: rgba(255, 107, 53, 0.15);
  transform: scale(1.05);
}

/* ========================================   Franklin Well Services - Modern Theme   Compatible with Bootstrap Studio   ======================================== */

/* CSS Variables */

/* Base Typography */

/* ========================================   HEADER & NAVIGATION   ======================================== */

/* ========================================   PAGE HEADERS   ======================================== */

/* Consistent hero height without cropping */

/* ========================================   CONTENT SECTIONS   ======================================== */

/* ========================================   CARDS & FEATURES   ======================================== */

/* ========================================   SERVICE CARDS (Homepage)   ======================================== */

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ========================================   STATS & NUMBERS   ======================================== */

/* ========================================   LISTS & BENEFITS   ======================================== */

/* ========================================   TIMELINE   ======================================== */

/* ========================================   IMAGE PLACEHOLDERS   ======================================== */

/* ========================================   APPLICATIONS & TAGS   ======================================== */

/* ========================================   CTA SECTIONS   ======================================== */

/* ========================================   FOOTER   ======================================== */

/* ========================================   ANIMATIONS   ======================================== */

/* Fade in animation */

/* Slide in from left */

/* ========================================   RESPONSIVE BREAKPOINTS   ======================================== */

/* ========================================   UTILITY CLASSES   ======================================== */

/* Smooth scrolling */

/* Selection color */

/* Full-bleed video hero */

/* Respect users who prefer reduced motion: show poster instead of playing video */

/* ========================================   Franklin Well Services - Modern Theme   Compatible with Bootstrap Studio   ======================================== */

/* CSS Variables */

:root {
  --fws-orange: #FF6B35;
  --fws-orange-dark: #d35308;
  --fws-dark: #1a1a1a;
  --fws-darker: #0a0a0a;
  --fws-steel: #004E89;
  --fws-light: #f5f5f5;
}

/* Base Typography */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--fws-steel) !important;
  color: var(--fws-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

/* ========================================   HEADER & NAVIGATION   ======================================== */

.nav-link {
  color: var(--fws-light) !important;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.75rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.8rem;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--fws-orange);
  transition: width 0.3s ease;
}

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

/* ========================================   PAGE HEADERS   ======================================== */

.page-header {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(211, 83, 8, 0.3)), url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 4rem;
  position: relative;
  margin-bottom: 4rem;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fws-orange), transparent);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

.service-hero {
  background-size: cover;
  background-position: center;
  padding: 10rem 0 6rem;
  position: relative;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--fws-darker));
}

.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-hero .lead {
  font-size: 1.5rem;
  max-width: 800px;
}

/* Consistent hero height without cropping */

.hero-carousel {
  height: clamp(50vh, 80vh, 900px);
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; 
  display: block;
}

@media (min-width: 992px) {
  .hero-carousel .carousel-item img {
    object-position: center 60%; /* try 15%, 25%, 35% until it looks right */
  }
}



/* ========================================   CONTENT SECTIONS   ======================================== */

.content-section {
  padding: 5rem 0;
}

.content-section:nth-child(even) {
  background: var(--fws-dark);
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--fws-orange);
  margin-bottom: 2rem;
}

.section-subtitle {
  color: var(--fws-orange);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}

.content-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========================================   CARDS & FEATURES   ======================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card, .stat-card, .value-card {
  background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover, .stat-card:hover, .value-card:hover {
  transform: translateY(-8px);
  border-color: var(--fws-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon, .value-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg, .value-icon svg {
  width: 30px;
  height: 30px;
  color: var(--fws-orange);
}

.feature-card h3, .value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--fws-orange);
}

.feature-card h2, .value-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--fws-orange);
}

.feature-card p, .value-card p {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ========================================   SERVICE CARDS (Homepage)   ======================================== */

.service-card {
  background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), var(--fws-steel), rgba(0,0,0,0.3));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2), 0 0 60px rgba(255, 107, 53, 0.1);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: var(--fws-orange);
  z-index: 1;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--fws-orange);
}

.service-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fws-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.service-link:hover {
  color: var(--fws-orange);
  gap: 0.75rem;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ========================================   STATS & NUMBERS   ======================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fws-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================   LISTS & BENEFITS   ======================================== */

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

.benefits-list li {
  padding: 1rem 0;
  padding-left: 3rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--fws-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

/* ========================================   TIMELINE   ======================================== */

/* ========================================   IMAGE PLACEHOLDERS   ======================================== */

.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
  border: 2px dashed rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.img-placeholder:hover {
  border-color: var(--fws-orange);
  color: var(--fws-orange);
}

/* ========================================   APPLICATIONS & TAGS   ======================================== */

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.application-tag {
  background: linear-gradient(135deg,rgba(255,107,53,.1),rgba(0,78,137,.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  font-weight: 400;
  transition: all 0.3s ease;
  background-color: #1d1d1d;
}

.application-tag:hover {
  background: rgba(255,107,53,.2);
  transform: scale(1.05);
}

/* ========================================   CTA SECTIONS   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--fws-orange), var(--fws-steel));
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn.btn-man {
  background-color: var(--fws-orange-dark);
  border-color: var(--fws-orange-dark);
  color: #fff;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn.btn-man:hover, .btn.btn-man:focus-visible {
  background: var(--fws-orange-dark);
  background-color: var(--fws-orange);
  border-color: var(--fws-orange);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.btn.btn-cta {
  background: #f5f5f5;
  color: var(--fws-orange-dark);
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: var(--fws-orange-dark);
  background: #f5f5f5;
}

.btn.btn-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: var(--fws-orange-dark);
  background-color: #f5f5f5;
}

.btn.btn-form {
  background: var(--fws-orange);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

footer {
  background: linear-gradient(180deg, var(--fws-dark) 0%, var(--fws-darker) 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  padding: 3rem 0 1.5rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fws-orange), var(--fws-steel), var(--fws-orange));
}

footer h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: var(--fws-orange);
  transform: translateX(4px);
}

footer .link-light:hover {
  color: var(--fws-orange) !important;
}

/* ========================================   ANIMATIONS   ======================================== */

.animate-on-scroll {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Only animate when JS turns it on */
.animate-on-scroll.is-animating {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.is-animating.visible {
  opacity: 1;
  transform: none;
}
/* Fade in animation */

/* Slide in from left */

/* ========================================   RESPONSIVE BREAKPOINTS   ======================================== */

@media (max-width: 768px) {
  .page-header, .service-hero {
    padding: 6rem 0 4rem;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .service-card, .feature-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

/* ========================================   UTILITY CLASSES   ======================================== */

.text-orange {
  color: var(--fws-orange) !important;
}

.bg-dark-alt {
  background: var(--fws-dark) !important;
}

/* Smooth scrolling */

html {
  scroll-behavior: smooth;
}

/* Selection color */

::selection {
  background: var(--fws-orange);
  color: white;
}

.hero-overlay-standalone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 45%);
  z-index: -1;
}

.hero-overlay-standalone {
  position: relative;
  z-index: 3;
  height: 600px;
  margin-top: -600px;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Full-bleed video hero */

/* Respect users who prefer reduced motion: show poster instead of playing video */

.img-fill {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-wrapper {
  width: 100%;
  overflow: hidden;
}

.service-card-link {
  color: rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));
  text-decoration: none!important;
}

.footer-icon {
  transition: fill 0.3s ease;
}

.footer-icon-link:hover .footer-icon {
  fill: var(--fws-steel);
}

/* ============================================
   TEAM / MANAGEMENT CARD STYLES
   ============================================ */

/* Wrapper to control spacing and centering */

/* Individual team card */

.team-card {
  background: #252525;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 340px;
  width: 100%;
  text-align: center;
  padding-bottom: 1.5rem;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--fws-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

/* Image inside the card */

.team-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #e5e5e5;
}

/* Name styling */

.team-name {
  font-size: clamp(1.0rem, 2vw, 1.7rem);
  /*color: #FF6B35;*/
  /*margin-bottom: 1.5rem;*/
  /*font-weight: 700;*/
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  /*color: #003f6b;*/
}

.team-title {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 1rem;
  margin-top: 1rem;
  /*color: rgba(255,255,255,0.7);*/
}

.team-contact {
  font-size: 13px;
}

/* Link styling (to bio page) */

.team-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--fws-orange, #e3651d);
  text-decoration: none;
  transition: color 0.2s;
}

.team-link:hover {
  color: #ff7f32;
  text-decoration: underline;
}

/* ===== NAVX REQUIRED STATE CLASSES (do not purge) ===== */

/* scrolled state: more solid + slightly tighter */

.fws-navbar.scrolled {
  background: rgba(10, 10, 10, 0.92) !important;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  padding: 0.5rem 0;
}

/* keep logo from looking huge when shrunk */

.fws-navbar.scrolled .fws-nav-logo {
  height: 48px;
}

/* make the anchor wrapper behave (prevents inline weirdness) */

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

/* Service card hover should trigger when the anchor wrapper is hovered */
.service-card-link:hover .service-card {
  transform: translateY(-12px) scale(1.02);
}

.service-card-link:hover .service-card::before {
  opacity: 1;
}

.service-card-link:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card-link:hover .service-icon svg {
  color: #ffffff;
  transform: scale(1.1);
}

.service-card-link:hover .service-title {
  color: var(--fws-orange);
}

.address {
  white-space: normal;
  line-height: 1.0;
  font-style: normal;
}

.address span {
  display: block;
  white-space: nowrap;
}

