/* ==========================================================================
   HERO SLIDER & QUICK QUOTE PANEL
   ========================================================================== */

.hero-slider-section {
  position: relative;
  background: linear-gradient(135deg, #0a1128 0%, #1c2541 100%);
  color: #ffffff;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

/* CAROUSEL BACKGROUND SLIDES */
.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-carousel .carousel-item {
  height: 100%;
  min-height: 580px;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.5) 100%);
  z-index: 2;
}

/* HERO STAGE CONTENT */
.hero-stage {
  position: relative;
  z-index: 3;
  padding: 4rem 0;
}

.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(211, 47, 47, 0.25);
  border: 1px solid var(--primary-color);
  color: #ff8a80;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: #ff5252;
}

.hero-lead-text {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* TRUST STRIP */
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f1f5f9;
}

.hero-trust-item i {
  color: #4ade80;
  font-size: 1.1rem;
}

/* HERO FORM CARD */
.hero-form-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-card h4 {
  color: var(--secondary-color);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.hero-form-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  background-color: #f8fafc;
  transition: var(--transition-fast);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  background-color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}

.hero-form-card textarea.form-control {
  height: auto;
}

.btn-submit-hero {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  height: 52px;
  border-radius: var(--radius-sm);
  width: 100%;
  border: none;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-submit-hero:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 47, 47, 0.5);
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-lead-text {
    font-size: 1rem;
  }
  .hero-stage {
    padding: 2.5rem 0;
  }
  .hero-form-card {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}
