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

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

.page-contact__hero-section {
  background-color: #004AAD;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,geometric,blue_gold]');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-contact__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.7);
}

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

.page-contact__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__contact-info {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

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

.page-contact__info-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #004AAD;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-contact__card-text {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-contact__link, .page-contact__social-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  background-color: #004AAD;
  padding: 8px 15px;
  border-radius: 5px;
  display: inline-block;
}

.page-contact__link:hover, .page-contact__social-link:hover {
  color: #FFFFFF;
  background-color: #003a80;
}

.page-contact__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-contact__contact-form {
  padding: 60px 0;
  background-color: #f0f4f8;
}

.page-contact__form-title {
  font-size: 2.8em;
  color: #004AAD;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__form-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-contact__form-input, .page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
  border-color: #004AAD;
  box-shadow: 0 0 8px rgba(0, 74, 173, 0.2);
  outline: none;
}

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

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

.page-contact__submit-button:hover {
  background-color: #e6c200;
  color: #003a80;
}

.page-contact__cta-section {
  background-color: #004AAD;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:casino,lights,abstract,dark_blue]');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-contact__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 74, 173, 0.8);
}

.page-contact__cta-content {
  position: relative;
  z-index: 1;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-contact__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #004AAD;
  border: 2px solid #FFD700;
}

.page-contact__button--primary:hover {
  background-color: #e6c200;
  color: #003a80;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-contact__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #004AAD;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-contact__button--tertiary {
  background-color: #004AAD;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-contact__button--tertiary:hover {
  background-color: #003a80;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.3);
}

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

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

  .page-contact__card-title {
    font-size: 1.5em;
  }

  .page-contact__form-title, .page-contact__cta-title {
    font-size: 2em;
  }

  .page-contact__form, .page-contact__info-card {
    padding: 25px;
  }

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

  .page-contact__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-contact__button {
    width: 80%;
    margin-bottom: 15px;
  }
}

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

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

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

  .page-contact__cta-section, .page-contact__hero-section {
    padding: 60px 0;
  }

  .page-contact__contact-info, .page-contact__contact-form {
    padding: 40px 0;
  }
}