/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A2E;
}

.page-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-contact__hero {
  background: linear-gradient(135deg, #0A246A 0%, #000000 100%);
  color: #FFD700;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric,dark_blue,gold_lines]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-contact__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-contact__hero-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 40px;
  position: relative;
}

.page-contact__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0A246A;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-contact__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-contact__method-card {
  background-color: #0A246A;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

.page-contact__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-contact__method-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__card-text {
  font-size: 1em;
  line-height: 1.5;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-contact__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-contact__form-section {
  background-color: #1A1A2E;
  padding: 60px 0;
}

.page-contact__form-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #CCCCCC;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0A246A;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-contact__form-group {
  margin-bottom: 25px;
}

.page-contact__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 15px;
  border: 1px solid #FFD700;
  border-radius: 8px;
  background-color: #051847;
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #A0A0A0;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
}

.page-contact__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  border: none;
}

.page-contact__btn--primary {
  background-color: #FFD700;
  color: #0A246A;
  margin-top: 20px;
}

.page-contact__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-contact__btn--secondary {
  background-color: #0A246A;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #051847;
  color: #FFD700;
  transform: translateY(-3px);
}

.page-contact__btn--submit {
  background-color: #FFD700;
  color: #0A246A;
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
}

.page-contact__btn--submit:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-contact__cta {
  background-color: #1A1A2E;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,dark_blue,gold_accents]') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}

.page-contact__cta-image {
  max-width: 100%;
  width: 400px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-contact__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-contact__cta-description a {
  color: #FFD700;
  text-decoration: underline;
}

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

  .page-contact__section-title {
    font-size: 2em;
  }

  .page-contact__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 2em;
  }

  .page-contact__hero-description,
  .page-contact__card-text,
  .page-contact__form-description,
  .page-contact__cta-description {
    font-size: 0.95em;
  }

  .page-contact__section-title {
    font-size: 1.8em;
  }

  .page-contact__method-card,
  .page-contact__contact-form {
    padding: 20px;
  }

  .page-contact__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-contact__cta-title {
    font-size: 1.8em;
  }
}