/* 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;
}

/* Hero Section */
.page-contact__hero-section {
  background-color: #007BFF;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract,geometric,blue_gold]');
  background-size: cover;
  background-position: center;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFC107; /* Highlight with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Info Section */
.page-contact__contact-info-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-contact__info-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  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__info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

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

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

.page-contact__link-button {
  display: inline-block;
  background-color: #FFC107;
  color: #333;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__link-button:hover {
  background-color: #e0a800;
  color: #fff;
}

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

.page-contact__social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.page-contact__social-icon:hover {
  transform: scale(1.1);
}

/* Form Section */
.page-contact__form-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-contact__section-description {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding: 30px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

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

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #007BFF;
  color: #fff;
  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: #0056b3;
  transform: translateY(-2px);
}

/* Call to Action Section */
.page-contact__cta-section {
  background-color: #007BFF;
  padding: 80px 0;
  text-align: center;
  color: #fff;
  background-image: url('[GALLERY:bg:chips,cards,money,betting]');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.page-contact__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.page-contact__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFC107;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-contact__cta-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-button--secondary {
  background-color: #fff;
  color: #007BFF;
}

.page-contact__cta-button--secondary:hover {
  background-color: #eee;
  color: #0056b3;
}

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

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

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

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

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

  .page-contact__cta-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
}

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

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

  .page-contact__info-card {
    padding: 20px;
  }

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

  .page-contact__form-input,
  .page-contact__form-textarea {
    width: calc(100% - 20px);
  }

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

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