/* ============================================
   INDEX PAGE - COMPLETE STYLESHEET
   ============================================ */

/* ---------- HERO ---------- */
.hero .heading {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ---------- URGENCY BANNER ---------- */
.urgency-banner {
  background: linear-gradient(135deg, #fdf8f3, #f5e6e0);
  padding: 15px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 900px;
  border: 1px solid var(--secondary-light);
}

.urgency-banner .urgent-label {
  background: #e74c3c;
  color: #fff;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgency-banner .countdown {
  font-weight: 600;
  color: var(--dark);
}

.urgency-banner .price-alert {
  color: #e74c3c;
  font-weight: 600;
}

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.trust-badges .badge-item .badge-icon {
  font-size: 1.5rem;
}

/* ---------- CONTACT FORM SECTION ---------- */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-section .section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-section .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 35px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper:hover {
  box-shadow: var(--shadow-hover);
}

.contact-form-wrapper .form-control {
  display: block;
  width: 100%;
  padding: 13px 18px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 12px;
  transition: var(--transition);
  font-family: 'Work Sans', sans-serif;
}

.contact-form-wrapper .form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42, 95, 122, 0.08);
}

.contact-form-wrapper .form-control::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrapper .form-group {
  margin-bottom: 18px;
}

.contact-form-wrapper .form-group:last-child {
  margin-bottom: 0;
}

/* ---------- SUBMIT BUTTON ---------- */
.btn-submit {
  background: var(--primary-light);
  color: var(--white);
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Work Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(42, 95, 122, 0.35);
}

.btn-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .spinner {
  display: inline-block;
}

.btn-submit.loading .btn-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- ALERT ---------- */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.d-none {
  display: none !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    gap: 16px;
    padding: 20px 0;
  }

  .trust-badges .badge-item {
    font-size: 0.85rem;
  }

  .urgency-banner {
    padding: 12px 16px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 18px 14px;
  }

  .contact-form-wrapper .form-control {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .trust-badges .badge-item {
    font-size: 0.8rem;
  }

  .trust-badges .badge-item .badge-icon {
    font-size: 1.2rem;
  }
}