/* HERO OVERLAY FORM (Slider Layout) */
.hero-slider-layout .hero-form-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.hero-slider-layout .hero-form-head{
  margin-bottom: 14px;
}

.hero-slider-layout .hero-form-title{
  color: #fff;
  font-size: 22px;
  margin: 0 0 6px;
}

.hero-slider-layout .hero-form-sub{
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.5;
}

.hero-slider-layout .hero-field input,
.hero-slider-layout .hero-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  padding: 12px 14px;
  outline: none;
  transition: all .2s ease;
}

.hero-slider-layout .hero-field textarea{
  resize: none;
}

.hero-slider-layout .hero-field input::placeholder,
.hero-slider-layout .hero-field textarea::placeholder{
  color: rgba(255,255,255,0.55);
}

.hero-slider-layout .hero-field input:focus,
.hero-slider-layout .hero-field textarea:focus{
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.hero-slider-layout .hero-form-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-layout .hero-form-status{
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  min-height: 18px;
}

/* Responsive: keep form comfortable on small screens */
@media (max-width: 991px){
  .hero-slider-layout .hero-form-card{
    margin-top: 18px;
  }
}
