/* Sunbelt & Stud Welding Equipment Ultra-Modern Custom CSS */
:root {
  --sunbelt-navy: #0f2b48;
  --sunbelt-navy-dark: #091a2c;
  --sunbelt-navy-light: #18416b;
  --sunbelt-orange: #e85d04;
  --sunbelt-orange-hover: #dc2f02;
  --sunbelt-gold: #f48c06;
  --sunbelt-gray-bg: #f8f9fa;
  --sunbelt-card-bg: #ffffff;
  --sunbelt-border: #e2e8f0;
  --sunbelt-text-dark: #0f172a;
  --sunbelt-text-muted: #64748b;
  --sunbelt-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--sunbelt-font-sans);
  color: var(--sunbelt-text-dark);
  background-color: var(--sunbelt-gray-bg);
  overflow-x: hidden;
}

/* Site Logo Image Styles */
.site-logo-img {
  height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.25s ease;
}

.site-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-badge {
  display: inline-block;
  background-color: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 240px;
}

.footer-logo-img {
  height: 60px !important;
  max-height: 60px !important;
  max-width: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Light Theme Header & Top Bar */
.top-bar {
  background-color: var(--sunbelt-navy-dark);
  color: #e2e8f0;
  font-size: 0.875rem;
}

.top-bar a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: #ffffff;
}

.navbar-sunbelt {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 43, 72, 0.08);
  transition: all 0.3s ease;
}

.navbar-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sunbelt-orange), var(--sunbelt-gold));
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}

.brand-text-title {
  font-weight: 900;
  color: var(--sunbelt-navy);
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--sunbelt-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-sunbelt .navbar-nav .nav-link {
  font-weight: 600;
  color: var(--sunbelt-navy);
  padding: 8px 16px;
  border-radius: 20px;
  margin: 0 2px;
  transition: all 0.25s ease;
  position: relative;
}

.navbar-sunbelt .navbar-nav .nav-link:hover {
  color: var(--sunbelt-orange);
  background-color: rgba(232, 93, 4, 0.05);
}

/* Prominent & Highly Visible Active Nav Indicator */
.navbar-sunbelt .navbar-nav .nav-link.active {
  color: var(--sunbelt-orange) !important;
  font-weight: 800 !important;
  background-color: rgba(232, 93, 4, 0.1) !important;
  box-shadow: inset 0 0 0 1px rgba(232, 93, 4, 0.25);
}

/* Enhanced Breadcrumb Styling */
.sunbelt-breadcrumb {
  background-color: #ffffff;
  border: 1px solid var(--sunbelt-border);
  border-radius: 50px;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(15, 43, 72, 0.05);
  font-size: 0.875rem;
}

.sunbelt-breadcrumb-link {
  color: var(--sunbelt-navy);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.sunbelt-breadcrumb-link:hover {
  color: var(--sunbelt-orange);
  transform: translateX(-1px);
}

.sunbelt-breadcrumb-divider {
  color: var(--sunbelt-text-muted);
  margin: 0 10px;
  font-size: 0.75rem;
}

.sunbelt-breadcrumb-active {
  color: var(--sunbelt-orange);
  font-weight: 700;
  background-color: rgba(232, 93, 4, 0.08);
  padding: 2px 10px;
  border-radius: 20px;
}

/* Buttons */
.btn-sunbelt-primary {
  background: linear-gradient(135deg, var(--sunbelt-orange) 0%, #f37021 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.3);
}

.btn-sunbelt-primary:hover {
  background: linear-gradient(135deg, var(--sunbelt-orange-hover) 0%, var(--sunbelt-orange) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.45);
}

.btn-sunbelt-navy {
  background: linear-gradient(135deg, var(--sunbelt-navy) 0%, var(--sunbelt-navy-light) 100%);
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 18px rgba(15, 43, 72, 0.25);
}

.btn-sunbelt-navy:hover {
  background: linear-gradient(135deg, var(--sunbelt-navy-dark) 0%, var(--sunbelt-navy) 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 43, 72, 0.35);
}

.btn-sunbelt-outline {
  border: 2px solid var(--sunbelt-navy);
  color: var(--sunbelt-navy);
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 26px;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(15, 43, 72, 0.05);
}

.btn-sunbelt-outline:hover {
  background-color: var(--sunbelt-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 43, 72, 0.15);
}

/* Pulse animation for main CTA button */
.pulse-btn {
  position: relative;
}

.pulse-btn::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 10px;
  border: 2px solid var(--sunbelt-orange);
  animation: pulse-ring 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.8;
  }
}

/* ULTRA-MODERN HERO SECTION */
.modern-hero-section {
  background: linear-gradient(135deg, #091a2c 0%, #0f2b48 55%, #18416b 100%);
  color: #ffffff;
  position: relative;
  padding: 30px 0 25px;
  overflow: hidden;
}

.modern-hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.modern-hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 140, 6, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: var(--sunbelt-gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(244, 140, 6, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-main-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: #ffffff;
}

.hero-highlight-text {
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-accent-orange {
  color: var(--sunbelt-gold);
  -webkit-text-fill-color: var(--sunbelt-gold);
}

.hero-main-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.65;
  font-weight: 400;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* Glassmorphic Carousel & HQ Card */
.hero-slider-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.hero-slider-img {
  height: 480px;
  object-fit: cover;
  width: 100%;
  filter: brightness(0.85);
  transition: transform 6s ease;
}

.carousel-item.active .hero-slider-img {
  transform: scale(1.06);
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 43, 72, 0.1) 0%, rgba(9, 26, 44, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 35px;
  color: #ffffff;
}

.hero-hq-glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--sunbelt-text-dark);
}

.hero-hq-header {
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

/* PROFESSIONAL STEPS EQUIPMENT PROCESS FLOW LAYOUT */
.steps-process-wrapper {
  position: relative;
  padding: 10px 0;
}

.steps-line-connector {
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(to right, var(--sunbelt-orange), var(--sunbelt-gold), var(--sunbelt-navy-light));
  z-index: 1;
}

.step-flow-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--sunbelt-border);
  padding: 26px 22px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 25px rgba(15, 43, 72, 0.06);
}

.step-flow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 43, 72, 0.14);
  border-color: var(--sunbelt-orange);
}

.step-badge-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunbelt-navy) 0%, var(--sunbelt-navy-light) 100%);
  color: var(--sunbelt-gold);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(15, 43, 72, 0.25);
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.step-flow-card:hover .step-badge-circle {
  background: linear-gradient(135deg, var(--sunbelt-orange) 0%, var(--sunbelt-gold) 100%);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(232, 93, 4, 0.4);
}

.step-pill-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sunbelt-orange);
  background-color: rgba(232, 93, 4, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Feature & Category Cards */
.sunbelt-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--sunbelt-border);
  padding: 26px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(15, 43, 72, 0.04);
}

.sunbelt-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(to bottom, var(--sunbelt-orange), var(--sunbelt-gold));
  transition: height 0.35s ease;
}

.sunbelt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(15, 43, 72, 0.12);
  border-color: rgba(232, 93, 4, 0.35);
}

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

.card-product-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.step-flow-card:hover .card-product-img {
  transform: scale(1.04);
}

.card-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(15, 43, 72, 0.15);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

/* Stats Counter Bar */
.stats-bar {
  background: linear-gradient(135deg, var(--sunbelt-navy-dark) 0%, var(--sunbelt-navy) 100%);
  color: #ffffff;
  padding: 35px 0;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(15, 43, 72, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--sunbelt-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Header Styling */
.section-title {
  color: var(--sunbelt-navy);
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--sunbelt-text-muted);
  font-size: 1.1rem;
  max-width: 780px;
  margin: 0 auto 25px;
  line-height: 1.55;
}

.section-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--sunbelt-orange), var(--sunbelt-gold));
  border-radius: 3px;
  margin: 0 auto 14px;
}

/* Accessories Grid */
.accessory-badge {
  background: #ffffff;
  border: 1px solid var(--sunbelt-border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--sunbelt-navy);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(15, 43, 72, 0.03);
}

.accessory-badge i {
  color: var(--sunbelt-orange);
  font-size: 1.35rem;
}

.accessory-badge:hover {
  border-color: var(--sunbelt-orange);
  background-color: rgba(232, 93, 4, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(15, 43, 72, 0.08);
}

/* Section Feature Image */
.section-feature-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 43, 72, 0.15);
  border: 1px solid var(--sunbelt-border);
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--sunbelt-navy) 0%, #163d66 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 43, 72, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244, 140, 6, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating Contact Widget */
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background-color: var(--sunbelt-orange);
  color: white;
  width: 62px;
  height: 62px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.55);
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-call-btn:hover {
  color: white;
  transform: scale(1.1);
  background-color: var(--sunbelt-orange-hover);
}

/* High Contrast & Clean Footer Styling */
.footer-sunbelt {
  background-color: var(--sunbelt-navy-dark);
  color: #e2e8f0;
  padding: 50px 0 25px;
}

.footer-desc {
  color: #cbd5e1 !important;
  font-size: 0.925rem;
  line-height: 1.65;
}

.footer-title {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--sunbelt-orange);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.925rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--sunbelt-gold) !important;
  padding-left: 4px;
}

.footer-contact-item {
  color: #e2e8f0 !important;
  font-size: 0.925rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-copyright {
  color: #94a3b8 !important;
  font-size: 0.875rem;
}

/* Media Queries for Responsive Design */
@media (max-width: 991.98px) {
  .steps-line-connector {
    display: none;
  }
  .hero-main-title {
    font-size: 2.35rem;
  }
  .hero-slider-img {
    height: 360px;
  }
  .stat-number {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 1.95rem;
  }
}

@media (max-width: 575.98px) {
  .hero-main-title {
    font-size: 1.9rem;
  }
  .hero-slider-img {
    height: 280px;
  }
  .hero-slider-overlay {
    padding: 20px;
  }
  .modern-hero-section {
    padding: 25px 0;
  }
  .btn-sunbelt-primary, .btn-sunbelt-navy {
    width: 100%;
    margin-bottom: 10px;
  }
  .cta-banner {
    padding: 30px 20px;
  }
}

/* Ensure all animated elements remain 100% visible even if AOS JS fails or is offline */
body:not(.aos-initialized) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
