/* Home Page Specific Styles (extracted from index.php) */

.hero-form-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  border: 1px solid rgba(241, 245, 249, 0.5);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.5s ease;
}

.hero-form-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.form-card-top-bar {
  height: 8px;
  background: linear-gradient(90deg, #1DA1F2 0%, #7B2FF7 50%, #FF8E53 100%);
  width: 100%;
}

.form-card-body {
  padding: 40px 35px;
  text-align: center;
}

.form-card-title {
  font-size: 34px;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-conversion-form {
  display: flex;
  flex-direction: column;
}

.form-input-group .form-control {
  height: 60px;
  border-radius: 14px;
  border: 2px solid #f1f5f9;
  padding: 0 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8fafc;
  color: #0F172A;
  font-weight: 500;
}

.form-input-group .form-control:focus {
  border-color: #1DA1F2;
  box-shadow: 0 0 0 4px rgba(29, 161, 242, 0.1);
  background: #ffffff;
  outline: none;
}

.form-input-group .form-control::placeholder {
  color: #94a3b8;
}

.btn-hero-submit {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  height: 65px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
  margin-top: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
  cursor: pointer;
  width: 100%;
}

.btn-hero-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(123, 47, 247, 0.5);
}

.form-card-footer {
  margin-top: 25px;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-card-footer i {
  color: #7B2FF7;
  font-size: 1.1em;
}

@media (max-width: 991px) {
  .hero-form-card {
    margin-top: 40px;
    transform: none;
  }
  .form-card-title {
    font-size: 28px;
  }
}
