/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Banner */
.contact-hero-banner {
  background: linear-gradient(135deg, #E8470A 0%, #C73E0A 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.contact-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 0;
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(232, 71, 10, 0.1) 0%, rgba(199, 62, 10, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #E8470A;
}

.contact-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 0.75rem;
}

.contact-form-description {
  color: #718096;
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Contact Form Inputs */
.contact-form .form-label {
  font-weight: 600;
  color: #2D3748;
  font-size: 0.95rem;
}

.contact-form .form-control {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #E8470A;
  box-shadow: 0 0 0 4px rgba(232, 71, 10, 0.1);
}

.contact-form .input-group-text {
  background: linear-gradient(135deg, rgba(232, 71, 10, 0.1) 0%, rgba(199, 62, 10, 0.1) 100%);
  border: 2px solid #E2E8F0;
  border-right: none;
  border-radius: 12px 0 0 12px;
  color: #E8470A;
}

.contact-form .input-group .form-control {
  border-radius: 0 12px 12px 0;
}

.contact-form textarea.form-control {
  border-radius: 12px;
  resize: vertical;
  min-height: 150px;
}

/* Contact Submit Button */
.contact-submit-btn {
  background: linear-gradient(135deg, #E8470A 0%, #C73E0A 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #C73E0A 0%, #E8470A 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 71, 10, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Contact Page Alerts */
.contact-form-card .alert {
  border-radius: 12px;
  border: none;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-form-card .alert-success {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.1) 0%, rgba(56, 178, 172, 0.1) 100%);
  color: #276749;
}

.contact-form-card .alert-danger {
  background: linear-gradient(135deg, rgba(245, 101, 101, 0.1) 0%, rgba(237, 100, 166, 0.1) 100%);
  color: #C53030;
}

/* Responsive Contact Page */
@media (max-width: 767px) {
  .contact-hero-banner {
    padding: 3rem 0;
  }
  
  .contact-hero-title {
    font-size: 1.75rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-form-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    margin-top: -1.5rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .contact-form-title {
    font-size: 1.5rem;
  }
  
  .contact-form-description {
    font-size: 0.9rem;
  }
  
  .contact-submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
