/* ============================================
   Forms & Buttons
   ============================================ */

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Form Card */
.hero-visual {
  position: relative;
  animation: slideUp 1s ease-out 0.2s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-card-header h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-form .form-field {
  margin-bottom: 0.85rem;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.hero-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form select {
  color: rgba(255, 255, 255, 0.7);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a962' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.hero-form select option {
  background: var(--navy);
  color: var(--white);
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.hero-form .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 1.1rem;
  margin-top: 0.25rem;
}

.hero-form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.75rem;
}

.hero-social-proof span {
  margin-left: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stats-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 0.75rem;
}

.hero-stat-mini {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.hero-stat-mini strong {
  color: var(--gold);
  font-weight: 700;
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

/* Contact Form */
.contact-form {
  background: var(--cream);
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group,
.contact-form .form-field {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form .form-field input,
.contact-form .form-field select {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid #e2e8f0;
  font-family: inherit;
  font-size: 16px;
  color: var(--navy);
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-error {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: #991b1b;
  font-size: 0.9rem;
  text-align: center;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form .form-field input:focus,
.contact-form .form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 1.15rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-card {
    padding: 1.5rem;
    width: 100%;
  }

  .hero-stats-row {
    flex-wrap: wrap;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 16px;
  }

  .form-submit {
    padding: 1rem;
    font-size: 0.85rem;
  }
}
