/* Contact page */
.contact-section {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* Form container */
.form-container {
  background: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 69, 0, 0.2);
  animation: slideInUp 0.8s ease-out 0.3s both;
}

/* Floating forms */
.form-floating {
  position: relative;
}

.form-floating input,
.form-floating textarea,
.form-floating select {
  background: rgba(0, 0, 0, 0.6) !important;
  border: 2px solid rgba(68, 68, 68, 0.6) !important;
  color: white !important;
  padding: 1rem !important;
  border-radius: 10px !important;
  transition: all 0.3s ease;
  min-height: 58px;
}

.form-floating textarea {
  min-height: 120px !important;
  resize: vertical;
}

.form-floating input:focus,
.form-floating textarea:focus,
.form-floating select:focus {
  border-color: #ff5722 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25) !important;
  transform: translateY(-2px);
}

.form-floating label {
  color: #aaa !important;
  transition: all 0.3s ease;
}

.form-floating input:focus ~ label,
.form-floating textarea:focus ~ label,
.form-floating select:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
  color: #ff5722 !important;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

/* Contact info */
.contact-info {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 69, 0, 0.1);
  animation: slideInLeft 0.8s ease-out 0.5s both;
}

.contact-info h3 {
  color: #ff5722;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
}

.contact-info-item i {
  color: #ff5722;
  width: 25px;
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 2px;
}

/* Readable text for contact info */
.text-readable {
  color: #d1d1d1 !important;
}