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

.page-contact__link-inline {
  color: #0056B3; /* Main brand color */
  text-decoration: none;
  font-weight: bold;
}

.page-contact__link-inline:hover {
  text-decoration: underline;
  color: #FFC107; /* Accent color on hover */
}

.page-contact__hero {
  background: linear-gradient(135deg, #0056B3 0%, #003f80 100%); /* Darker blue gradient for hero */
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFC107; /* Accent border */
}

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

.page-contact__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFC107; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #e0e0e0;
}

.page-contact__hero-image-wrapper {
  max-width: 600px;
  width: 100%;
  z-index: 1;
}

.page-contact__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #0056B3; /* Main brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.page-contact__contact-form-section {
  background-color: #f0f8ff; /* Lighter blue tint for form background */
  border-left: 5px solid #0056B3;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-contact__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #0056B3; /* Main brand color */
  font-size: 1.05em;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #0056B3;
  box-shadow: 0 0 8px rgba(0, 86, 179, 0.2);
  outline: none;
}

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

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

.page-contact__btn--primary {
  background-color: #FFC107; /* Accent color */
  color: #0056B3; /* Dark blue text for contrast */
}

.page-contact__btn--primary:hover {
  background-color: #e0a800; /* Slightly darker accent */
  transform: translateY(-2px);
}

.page-contact__btn--secondary {
  background-color: #0056B3; /* Main brand color */
  color: #ffffff;
  border: 1px solid #0056B3;
}

.page-contact__btn--secondary:hover {
  background-color: #003f80; /* Darker blue */
  transform: translateY(-2px);
}

.page-contact__btn--submit {
  width: 100%;
  background-color: #0056B3; /* Main brand color */
  color: #ffffff;
  margin-top: 20px;
}

.page-contact__btn--submit:hover {
  background-color: #003f80;
  transform: translateY(-2px);
}

.page-contact__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-contact__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-contact__method-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-contact__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__method-title {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-contact__method-text {
  color: #666;
  margin-bottom: 20px;
}

.page-contact__faq-section {
  background-color: #e6f2ff; /* Lighter blue background for FAQ */
}

.page-contact__faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-contact__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
  font-size: 1.3em;
  color: #0056B3;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f8ff;
  border-bottom: 1px solid #eee;
}

.page-contact__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-contact__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  color: #555;
}

.page-contact__faq-answer.active {
  max-height: 500px; /* Adjust based on content */
  padding: 20px 25px;
}

.page-contact__faq-answer p {
  margin-bottom: 15px;
}

.page-contact__cta-banner {
  background-color: #FFC107; /* Accent color */
  color: #0056B3; /* Dark blue text for contrast */
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__cta-text {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 25px;
}

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

.page-contact__info-card {
  background-color: #f0f8ff; /* Lighter blue tint */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-left: 5px solid #0056B3; /* Accent border */
}

.page-contact__info-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-contact__info-title {
  font-size: 1.4em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-contact__info-text {
  color: #555;
  font-size: 0.95em;
}

.page-contact__responsible-gambling-section {
  background-color: #fdf3e6; /* Light orange/cream background */
  border-top: 5px solid #FFC107;
}

.page-contact__responsible-gambling-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.page-contact__responsible-gambling-image {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__responsible-gambling-text {
  max-width: 800px;
  text-align: left;
  color: #444;
}

.page-contact__responsible-gambling-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-contact__final-cta {
  background: linear-gradient(90deg, #0056B3, #003f80); /* Dark blue gradient */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-top: 5px solid #FFC107;
  border-bottom: 5px solid #FFC107;
}

.page-contact__final-cta .page-contact__section-title {
  color: #FFC107;
  font-size: 3em;
  margin-bottom: 25px;
}

.page-contact__final-cta .page-contact__section-description {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-contact__hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-contact__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-contact__hero-image-wrapper {
    order: 2;
  }

  .page-contact__responsible-gambling-content {
    flex-direction: row;
    text-align: left;
  }

  .page-contact__responsible-gambling-image {
    flex-shrink: 0;
    margin-right: 30px;
  }
}

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

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

  .page-contact__hero,
  .page-contact__section {
    padding: 40px 15px;
  }

  .page-contact__hero-description,
  .page-contact__section-description,
  .page-contact__cta-text,
  .page-contact__responsible-gambling-text p {
    font-size: 1em;
  }

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

  .page-contact__final-cta .page-contact__section-title {
    font-size: 2.2em;
  }
}