/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  line-height: 1.6;
}

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

.page-contact__hero {
  background-color: #1A2E44;
  background-image: url('[GALLERY:bg:abstract,geometric,dark,texture]');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-contact__hero > div {
    position: relative;
    z-index: 2;
}

.page-contact__title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__subtitle {
  font-size: 1.2em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-contact__info-section {
  padding: 60px 0;
  background-color: #0A192F;
}

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

.page-contact__info-card {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__card-text {
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-contact__link-text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link-text:hover {
  color: #FFEB80;
  text-decoration: underline;
}

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

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0A192F;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #334D66;
  border-radius: 5px;
  background-color: #0A192F;
  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: #888;
}

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

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__submit-button:hover {
  background-color: #FFEB80;
  transform: translateY(-2px);
}

.page-contact__form-message {
  text-align: center;
  margin-top: 20px;
  font-size: 1.1em;
  color: #FFD700;
}

.page-contact__cta-section {
  background-color: #0A192F;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-contact__cta-text-wrapper {
    max-width: 800px;
}

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

.page-contact__cta-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-contact__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__cta-button:hover {
  background-color: #FFEB80;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-contact__social-section {
  background-color: #1A2E44;
  padding: 60px 0;
  text-align: center;
}

.page-contact__social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-contact__social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0A192F;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact__social-icon img {
  width: 28px;
  height: 28px;
  filter: invert(1) saturate(5) hue-rotate(20deg) brightness(1.2);
}

.page-contact__social-icon:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-contact__social-icon:hover img {
  filter: invert(0) saturate(0) hue-rotate(0deg) brightness(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.8em;
  }

  .page-contact__subtitle {
    font-size: 1em;
  }

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

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

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

  .page-contact__cta-description {
    font-size: 1em;
  }

  .page-contact__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .page-contact__form {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-contact__title {
    font-size: 2.2em;
  }

  .page-contact__hero,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__cta-section,
  .page-contact__social-section {
    padding: 40px 0;
  }

  .page-contact__container {
    padding: 0 15px;
  }

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

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

  .page-contact__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-contact__social-icon {
    width: 40px;
    height: 40px;
  }

  .page-contact__social-icon img {
    width: 22px;
    height: 22px;
  }
}