/* Contact Page Styles */

/* Page header */
.ac-contact-title {
  font-weight: 900;
  color: #0b1220;
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.ac-contact-sub {
  color: #6b7280;
  font-size: 1.1rem;
  margin: 0;
}

/* Contact cards */
.ac-contact-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(229,231,235,0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.ac-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.ac-contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.ac-contact-card h3 {
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.ac-contact-card p {
  font-weight: 700;
  color: #ff8c1a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ac-contact-card small {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Contact form */
.ac-contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(229,231,235,0.8);
}

.ac-contact-form h2 {
  font-weight: 900;
  color: #0b1220;
  margin-bottom: 2rem;
}

.ac-contact-form .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.ac-contact-form .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ac-contact-form .form-control:focus {
  border-color: #ff8c1a;
  box-shadow: 0 0 0 0.2rem rgba(255,140,26,0.25);
}

.ac-contact-form .btn-primary {
  background: linear-gradient(135deg, #ff8c1a, #ff6b1a);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  padding: 0.75rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ac-contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,140,26,0.3);
}

/* FAQ Section */
.ac-faq-section {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(229,231,235,0.8);
}

.ac-faq-section h2 {
  font-weight: 900;
  color: #0b1220;
  margin-bottom: 2rem;
}

.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 1rem;
}

.accordion-item:first-of-type {
  border-radius: 12px;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-weight: 700;
  color: #0b1220;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(255,140,26,0.1), rgba(255,140,26,0.05));
  color: #ff8c1a;
  border-color: #ff8c1a;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,140,26,0.25);
  border-color: #ff8c1a;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff8c1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff8c1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.accordion-body {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
  .ac-contact-form {
    padding: 2rem 1.5rem;
  }
  
  .ac-faq-section {
    padding: 2rem 1.5rem;
  }
  
  .ac-contact-card {
    padding: 1.5rem;
  }
  
  .ac-contact-icon {
    font-size: 2.5rem;
  }
}
