/* ==========================================================================
   Homecoming Movers - Home Page Specific CSS (home.css)
   ========================================================================== */

/* ==========================================================================
   1. Hero Section (Refined)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 560px;
  background-color: #FFFFFF;
  background-image:
    linear-gradient(to right,
      #FFFFFF 0%,
      #FFFFFF 38%,
      rgba(255, 255, 255, 0.95) 48%,
      rgba(255, 255, 255, 0.4) 60%,
      rgba(255, 255, 255, 0) 75%),
    url('../images/new-truck-bg.png');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 70px 0;
  display: flex;
  align-items: center;
}

.hero-left-col {
  z-index: 2;
  position: relative;
}

/* Tagline */
.hero-tagline {
  color: var(--accent-orange);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Main Title */
.hero-main-title {
  color: var(--primary-navy);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* Paragraph */
.hero-description {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 530px;
}

/* Hero Action Buttons */
.btn-hero-orange {
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero-orange:hover {
  background-color: var(--accent-orange-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 102, 0, 0.45);
}

.btn-hero-call {
  background-color: #FFFFFF;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--primary-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero-call:hover {
  background-color: rgba(11, 27, 61, 0.04);
  color: var(--primary-navy);
}

.call-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 15px;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Bottom Feature Badges */
.hero-bottom-badges {
  margin-top: 20px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
}

.badge-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-orange);
  color: var(--accent-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.badge-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-navy);
}

/* ==========================================================================
   2. About Us Section (Refined)
   ========================================================================== */
.about-section {
  background-color: #F8FAFC;
  position: relative;
}

.about-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(11, 27, 61, 0.06);
  border: 1px solid #E2E8F0;
}

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

.about-lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
}

.about-pill-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 10px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.about-pill-item:hover {
  border-color: var(--accent-orange);
  background-color: #FFF2EB;
}

.about-feature-box {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #152A56 100%);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(11, 27, 61, 0.15);
}

.about-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.2);
  color: var(--accent-orange);
  font-size: 1.8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-light-muted {
  color: #CBD5E1;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   3. Trust Stats Bar
   ========================================================================== */
.trust-stats-section {
  background-color: var(--primary-navy);
  padding: 45px 0;
  color: #FFFFFF;
  margin-top: 60px;
}

.trust-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 24px;
}

.stat-icon {
  font-size: 2rem;
  color: var(--accent-orange) !important;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 4px;
}

/* ==========================================================================
   4. Services Grid Section (3 Cards per Row)
   ========================================================================== */
.services-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.max-width-700 {
  max-width: 700px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(11, 27, 61, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 12px 30px rgba(11, 27, 61, 0.1);
  transform: translateY(-6px);
  border-color: rgba(255, 102, 0, 0.3);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 250px;
  max-height: 295px;
  overflow: hidden;
  background-color: #F8FAFC;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.05) translateZ(0);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-navy);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   5. Moving Crew Options Section (Exact Image Match)
   ========================================================================== */
.crew-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.tagline-with-lines {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.tag-line {
  width: 35px;
  height: 2px;
  background-color: var(--accent-orange);
  display: inline-block;
}

.crew-navy-card {
  background-color: #06132D;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(6, 19, 45, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.crew-navy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 19, 45, 0.3);
  border-color: rgba(255, 102, 0, 0.4);
}

.crew-circle-wrap {
  width: 90px;
  height: 90px;
}

.crew-circle-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.crew-circle-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
}

.crew-card-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.crew-title-line {
  width: 40px;
  height: 2.5px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.crew-card-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.crew-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 0;
}

.check-icon-orange {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}


/* ==========================================================
   3D Crew Card Flip Styles
   ========================================================== */
.crew-card-container {
  perspective: 1000px;
  height: 520px;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

/* Most Popular card outline */
.crew-card-container.popular-plan .crew-card-front {
  border: 2px solid var(--accent-orange, #FF6600) !important;
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15) !important;
}

.crew-card-container.popular-plan .crew-card-back {
  border: 2px solid var(--accent-orange, #FF6600) !important;
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15) !important;
}

.crew-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

/* Hover flip on desktop (Removed so it only flips on button click) */
/*
@media (hover: hover) {
  .crew-card-container:hover .crew-card-inner {
    transform: rotateY(180deg);
  }
}
*/

/* Active flip when class is toggled via Javascript */
.crew-card-inner.flipped {
  transform: rotateY(180deg) !important;
}

.crew-card-front,
.crew-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* Safari support */
  border-radius: 20px;
  background-color: #06132D !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(6, 19, 45, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 24px;
}

/* Back Face */
.crew-card-back {
  transform: rotateY(180deg);
  text-align: center;
}

/* Flip Button Styles */
.flip-btn {
  border: 1px solid var(--accent-orange, #FF6600) !important;
  color: var(--accent-orange, #FF6600) !important;
  background-color: transparent !important;
  transition: all 0.3s ease;
}

.flip-btn:hover {
  background-color: var(--accent-orange, #FF6600) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Rates & Pricing Front Styles */
.crew-price-wrap {
  margin: 15px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.crew-price-val {
  font-size: 2.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.crew-price-suffix {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-orange, #FF6600);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-orange, #FF6600);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
  z-index: 10;
}

/* Custom Action Link Buttons for Flip */
.btn-flip-trigger {
  background: none;
  border: none;
  color: var(--accent-orange, #FF6600);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  padding: 0;
  transition: all 0.25s ease;
  justify-content: center;
  width: 100%;
}

.btn-flip-trigger:hover {
  color: var(--accent-orange-hover, #E55C00);
}

/* Backside Policies */
.policy-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.policy-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-item {
  font-size: 0.82rem;
  color: #CBD5E1;
  line-height: 1.45;
  position: relative;
  padding-left: 24px;
}

.policy-item::before {
  content: "\f05a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent-orange, #FF6600);
  font-size: 0.85rem;
}

/* Any Device Responsive Adjustments */
@media (max-width: 991.98px) {
  .crew-card-container {
    height: 520px;
  }
}

@media (max-width: 767.98px) {
  .crew-card-container {
    height: 500px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .crew-card-container {
    height: 480px;
  }

  .crew-price-val {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   6. Why Choose Us Section (Improved UI)
   ========================================================================== */
.why-us-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.why-us-img-container {
  position: relative;
  border-radius: 24px;
}

.why-us-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(11, 27, 61, 0.1);
  object-fit: cover;
  display: block;
}

.why-us-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--primary-navy);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(11, 27, 61, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  z-index: 5;
}

@media (max-width: 991.98px) {
  .why-us-floating-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    display: inline-flex;
  }
}

.badge-star-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 102, 0, 0.2);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.78rem;
  margin-top: 2px;
}

.why-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  height: 100%;
}

.why-card:hover {
  background: #FFFFFF;
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(11, 27, 61, 0.08);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFF2EB;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: scale(1.08);
}

.why-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.why-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   7. How It Works Timeline Section (Improved UI)
   ========================================================================== */
.how-it-works-section {
  padding: 90px 0;
  background-color: #F8FAFC;
  position: relative;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 15px rgba(11, 27, 61, 0.04);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 35px rgba(11, 27, 61, 0.1);
}

.step-number-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-orange);
  background: #FFF2EB;
  padding: 4px 12px;
  border-radius: 24px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.step-card:hover .step-number-badge {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: scale(1.08);
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F8FAFC;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px auto;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.step-card:hover .step-icon-wrap {
  background: var(--accent-orange);
  color: #FFFFFF;
  transform: scale(1.08);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   8. Testimonial Section (Exact Mockup Match)
   ========================================================================== */
.testimonial-section {
  background-color: #FFFFFF;
  position: relative;
}

.testimonial-grid-card {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 20px rgba(11, 27, 61, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(11, 27, 61, 0.1);
  border-color: rgba(255, 102, 0, 0.3);
}

.stars-wrap {
  color: #FFC107;
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.stars-wrap .fa-star {
  color: #FFC107;
}

.testimonial-grid-quote {
  font-size: 0.95rem;
  color: var(--primary-navy);
  line-height: 1.65;
  font-weight: 600;
  margin-bottom: 24px;
}

.grid-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-dots-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CBD5E1;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots-bar .dot.active {
  background-color: var(--accent-orange);
  width: 22px;
  border-radius: 10px;
}

/* Swiper Testimonial Carousel Pagination Styling */
.testimonial-pagination {
  position: relative !important;
  bottom: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #CBD5E1;
  opacity: 1;
  margin: 0 !important;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-orange, #FF6600);
  width: 24px;
  border-radius: 10px;
}

/* Referral Reward Box */
.referral-box {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #132A5A 100%);
  color: #FFFFFF;
  background: linear-gradient(135deg, #0B1B3D 0%, #162C5B 100%);
  border-radius: 28px;
  border: 1px solid rgba(255, 102, 0, 0.25);
  box-shadow: 0 20px 50px rgba(11, 27, 61, 0.22);
}

.referral-glow-circle {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.25) 0%, rgba(255, 102, 0, 0) 70%);
  pointer-events: none;
}

.referral-program-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
}

.text-light-slate {
  color: #CBD5E1;
  line-height: 1.6;
}

.referral-feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
}

.referral-img-wrapper {
  padding: 10px;
}

.referral-badge-img {
  max-width: 280px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.referral-img-wrapper:hover .referral-badge-img {
  transform: translateY(-6px) scale(1.03);
}

.referral-floating-cash-badge {
  position: absolute;
  bottom: -10px;
  left: -15px;
  background: #FFFFFF;
  color: var(--primary-navy);
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--accent-orange);
}

.cash-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFF2EB;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cash-amount {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1.1;
}

.cash-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ==========================================================================
   9. Bottom CTA Banner
   ========================================================================== */
.bottom-cta-banner {
  background: var(--accent-orange);
  padding: 30px 0;
  color: #FFFFFF;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-banner-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-banner-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.cta-banner-text h4 {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-cta-navy {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
}

.btn-cta-navy:hover {
  background-color: #051026;
  color: #FFFFFF;
}

.btn-cta-white {
  background-color: #FFFFFF;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
}

.btn-cta-white:hover {
  background-color: #F8FAFC;
  color: var(--accent-orange);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-section {
    background-image:
      linear-gradient(to bottom, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 100%),
      url('../images/truck.png');
    padding: 40px 0;
  }

  .hero-main-title {
    font-size: 2.4rem;
  }

  .hero-bottom-badges {
    flex-wrap: wrap;
    gap: 15px !important;
  }

  .crew-card {
    padding: 24px 14px;
  }

  .crew-title {
    font-size: 1.1rem;
  }

  .crew-desc {
    font-size: 0.82rem;
  }

  .crew-graphic {
    gap: 10px;
    padding: 12px;
  }

  .service-img-wrapper {
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: 320px;
  }

  .stat-box {
    border-left: none;
    padding-left: 0;
    margin-bottom: 20px;
  }

  @media (max-width: 575.98px) {
    .service-img-wrapper {
      aspect-ratio: 4 / 3;
      min-height: 210px;
      max-height: 320px;
    }

    .hero-main-title {
      font-size: 2rem !important;
      line-height: 1.2;
    }

    .hero-btn-group {
      flex-direction: column !important;
      align-items: stretch !important;
      width: 100% !important;
      gap: 12px !important;
    }

    .btn-hero-orange,
    .btn-hero-call {
      width: 100% !important;
      padding: 14px 20px !important;
      justify-content: center !important;
      text-align: center !important;
      white-space: nowrap !important;
      border-radius: 50px !important;
    }

    .hero-bottom-badges {
      flex-direction: column;
      align-items: flex-start !important;
      gap: 12px !important;
    }
  }

  .referral-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .referral-badge-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 150px;
    display: block;
    margin: 0 auto;
  }

  .step-arrow {
    display: none;
  }
}