/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #2d1b4e 0%, #4a1a2e 50%, #8b0000 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4af37" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.1;
}

.contact-header {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  background: #1a0d2e;
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: white;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: linear-gradient(135deg, #2d1b4e, #1a0d2e);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
  border-color: #b8941f;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.info-card h3 {
  color: #d4af37;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* Contact Form */
.contact-form-container .section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: white;
}

.contact-form {
  background: linear-gradient(135deg, #2d1b4e, #1a0d2e);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #d4af37;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #444;
  border-radius: 8px;
  background: #1a0d2e;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a0d2e;
  color: white;
}

.btn-submit {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #1a0d2e;
  border: none;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #b8941f, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* FAQ Section */
.faq-section {
  background: #2d1b4e;
  padding: 80px 0;
}

.faq-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item {
  background: linear-gradient(135deg, #1a0d2e, #2d1b4e);
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
  border-color: #b8941f;
}

.faq-question {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.faq-answer {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
  color: #d4af37;
}

.nav-link.active::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-cards {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }
}

/* Animation for contact elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-content > * {
  animation: fadeInUp 0.6s ease forwards;
}

.contact-info {
  animation-delay: 0.1s;
}

.contact-form-container {
  animation-delay: 0.2s;
}

.faq-item {
  animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.6s;
}
