/* Contact Us Page - Premium Modern Styles */
.contact-section-premium {
  background-color: #f8fafc;
  background-image: linear-gradient(120deg, #f7fafc 60%, #e6f0ff 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 36px rgba(27,0,123,0.10);
  padding: 3rem 0 3rem 0;
}
.contact-img-wrap img {
  border-radius: 2rem;
  box-shadow: 0 8px 36px rgba(27,0,123,0.13);
}
.contact-form-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 18px rgba(32,32,64,0.11);
  border: none;
  transition: box-shadow 0.18s, transform 0.18s;
}
.contact-form-card:focus-within {
  box-shadow: 0 8px 32px rgba(44,100,255,0.13);
  transform: translateY(-2px) scale(1.02);
}
.contact-form-card h2 {
  color: #1b007b;
  font-weight: 800;
}
.contact-form-card .form-label {
  font-weight: 600;
  color: #23234a;
}
.contact-form-card .form-control {
  border-radius: 1.2rem;
  border: 1.5px solid #e0e0f7;
  box-shadow: 0 2px 8px rgba(60,60,120,0.07);
  font-size: 1.1rem;
  padding: 0.85em 1em;
  background: #fafaff;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.contact-form-card .form-control:focus {
  border-color: #8f6eff;
  box-shadow: 0 0 0 2px #e0e0f7;
  background: #fff;
}
.contact-form-card textarea.form-control {
  min-height: 90px;
  resize: vertical;
}
.contact-form-card .btn-primary {
  background: linear-gradient(90deg, #1b007b 0%, #f30000 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px rgba(44,100,255,0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.contact-form-card .btn-primary:hover, .contact-form-card .btn-primary:focus {
  background: linear-gradient(90deg, #f30000 0%, #1b007b 100%);
  box-shadow: 0 8px 28px rgba(44,100,255,0.18);
  transform: translateY(-2px) scale(1.03);
}
.contact-info-box {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 10px rgba(27,0,123,0.08);
  color: #23234a;
}
.contact-info-box i {
  color: #1b007b;
  font-size: 1.2rem;
  margin-right: 0.7rem;
}
@media (max-width: 991px) {
  .contact-section-premium {
    padding: 2rem 0 2rem 0;
    border-radius: 1.2rem;
  }
  .contact-img-wrap img {
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .contact-section-premium {
    padding: 1.2rem 0 1.2rem 0;
    border-radius: 0.8rem;
  }
  .contact-form-card {
    padding: 1.2rem 0.6rem;
  }
}
