/* Contact Page Styles */
.contact-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #009688 0%, #00796b 100%);
  color: white;
}

.contact-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-form-wrapper h3 {
  color: #333;
  font-weight: 600;
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #009688;
  box-shadow: 0 0 0 0.2rem rgba(0, 150, 136, 0.25);
}

.btn-primary {
  background-color: #009688;
  border-color: #009688;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #00796b;
  border-color: #00796b;
  transform: translateY(-2px);
}

/* Contact Information */
.contact-info-wrapper {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 15px;
  height: fit-content;
}

.contact-info-wrapper h3 {
  color: #333;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #009688;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details a {
  color: #009688;
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: #00796b;
  text-decoration: underline;
}

/* Social Media */
.social-media h5 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #009688;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #00796b;
  color: white;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
}

.faq-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #009688;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background-color: white;
  color: #333;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #009688;
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #f8f9fa;
  color: #555;
  line-height: 1.6;
}

/* Success Alert */
.alert-success {
  border: none;
  border-radius: 10px;
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin: 0 auto 1rem;
  }

  .social-icons {
    justify-content: center;
  }

  .faq-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    padding: 2rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }
}
