/* Hero Slider Styles */
.hero-slider-section {
  position: relative;
  background-color: #f8fafc;
}

.slider-banner-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}

.slider-title {
  font-size: 42px;
}

.slider-subtitle {
  font-size: 24px;
}

.hero-carousel .carousel-item {
  padding: 60px 0 110px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-carousel .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 10;
}

.hero-pill {
  display: inline-block;
  color: #df1c24;
  border: 1px solid #df1c24;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  background-color: transparent;
  text-transform: uppercase;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #071638;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .text-red {
  color: #df1c24;
}

.hero-title .text-green {
  color: #3b8220;
}

.hero-text {
  font-size: 16px;
  color: #475569;
  margin-bottom: 35px;
  max-width: 95%;
  line-height: 1.6;
}

.hero-buttons .btn-danger {
  background-color: #df1c24;
  border-color: #df1c24;
  padding: 10px 24px;
  font-weight: 600;
}

.hero-buttons .btn-danger:hover {
  background-color: #c81920;
  border-color: #c81920;
}

.hero-buttons .btn-outline-danger {
  color: #df1c24;
  border-color: #df1c24;
  padding: 10px 24px;
  font-weight: 600;
  background-color: white;
}

.hero-buttons .btn-outline-danger:hover {
  background-color: #df1c24;
  color: white;
}

.hero-bucket-img {
  max-height: 480px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  z-index: 5;
  position: relative;
}

.feature-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-card-sm {
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card-sm:hover {
  transform: translateX(-5px);
}

.feature-card-sm .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #df1c24;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-card-sm .text-wrap {
  font-weight: 600;
  color: #071638;
  font-size: 14px;
  line-height: 1.3;
}

/* Bottom Bar */
.bottom-features-bar {
  background-color: #071638;
  color: white;
  border-radius: 12px;
  padding: 25px 20px;
  margin-top: -50px;
  position: relative;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bottom-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.col-lg-3:last-child .bottom-feature-item {
  border-right: none;
}

.bottom-feature-item .icon-circle-outer {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bottom-feature-item .icon-circle-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #df1c24;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.bottom-feature-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.bottom-feature-item p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-title, .slider-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .slider-banner-img {
    height: 250px;
  }
  .slider-title {
    font-size: 24px;
  }
  .slider-subtitle {
    font-size: 16px;
  }

  .hero-carousel .carousel-item {
    height: auto;
    min-height: auto;
    padding: 60px 0 80px 0;
  }

  .hero-content {
    position: relative;
  }

  .hero-carousel .carousel-item::before {
    background: rgba(255, 255, 255, 0.92);
  }

  .bottom-features-bar {
    margin-top: 10px;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .bottom-feature-item {
    border-right: none;
    margin-bottom: 0;
    padding: 10px;
    background-color: #071638;
    border-radius: 8px;
    gap: 8px;
  }
  
  .bottom-feature-item .icon-circle-outer {
    width: 36px;
    height: 36px;
    border-width: 1px;
  }

  .bottom-feature-item .icon-circle-inner {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .bottom-feature-item h5 {
    font-size: 11px;
    margin-bottom: 2px;
  }

  .bottom-feature-item p {
    font-size: 9px;
  }

  .col-lg-3:last-child .bottom-feature-item {
    margin-bottom: 0;
  }

  .hero-bucket-img {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .feature-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    gap: 0;
  }
  
  .feature-card-sm {
    box-shadow: none;
    border-radius: 0;
    padding: 15px 10px;
    gap: 8px;
  }
  
  .feature-card-sm .icon-wrap {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .feature-card-sm .text-wrap span:first-child {
    font-size: 11px !important;
  }
  
  .feature-card-sm .text-wrap span:last-child {
    font-size: 9px !important;
  }

  .feature-card-sm:nth-child(1) { border-right: 1px solid #eee; border-bottom: 1px solid #eee; }
  .feature-card-sm:nth-child(2) { border-bottom: 1px solid #eee; }
  .feature-card-sm:nth-child(3) { border-right: 1px solid #eee; }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
}
