/* style/contact.css */

/* Base Styles & Typography */
.page-contact {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-contact__main-title {
  font-size: 3.2em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-contact__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

.page-contact__method-title,
.page-contact__info-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-contact__method-description,
.page-contact__info-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Hero Section */
.page-contact__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-contact__hero-section .page-contact__container {
  position: relative;
  z-index: 2;
}

/* Buttons */
.page-contact__btn-primary,
.page-contact__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-contact__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-contact__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-contact__btn-secondary:hover {
  background: #f0f0f0;
  color: #1e87b7;
  border-color: #1e87b7;
}

/* Contact Methods Section */
.page-contact__contact-methods {
  padding: 80px 0;
  background-color: #1a1a1a; /* Adjusted for dark body background */
  color: #f0f0f0; /* Light text for this section */
}

.page-contact__contact-methods .page-contact__section-title {
  color: #26A9E0; /* Brand color for title */
}

.page-contact__contact-methods .page-contact__section-description {
  color: #f0f0f0;
}

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

.page-contact__method-card {
  background: #282828; /* Slightly lighter dark for card background */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff; /* Light text for card content */
}

.page-contact__method-card .page-contact__method-title {
  color: #26A9E0;
}

.page-contact__method-card .page-contact__method-description {
  color: #f0f0f0;
  flex-grow: 1;
}

.page-contact__method-icon {
  width: 150px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

/* FAQ Section */
.page-contact__faq-section {
  padding: 80px 0;
  background-color: #121212; /* Dark background from body */
  color: #ffffff; /* Light text */
}

.page-contact__faq-section .page-contact__section-title {
  color: #26A9E0;
}

.page-contact__faq-section .page-contact__section-description {
  color: #f0f0f0;
}

.page-contact__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__faq-item {
  background: #282828;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: #26A9E0; /* Brand color for question background */
  border-radius: 12px;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-contact__faq-question::-webkit-details-marker {
  display: none;
}

.page-contact__faq-question:hover {
  background-color: #1e87b7;
}

.page-contact__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-contact__faq-item[open] .page-contact__faq-toggle {
  transform: rotate(45deg);
}

.page-contact__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: #333333; /* Darker background for answer */
  border-top: 1px solid #444444;
}

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

.page-contact__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-contact__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsible Gambling Section */
.page-contact__responsible-gambling {
  padding: 80px 0;
  background-color: #1a1a1a; /* Adjusted for dark body background */
  color: #f0f0f0;
  text-align: center;
}

.page-contact__responsible-gambling .page-contact__section-title {
  color: #26A9E0;
}

.page-contact__responsible-gambling .page-contact__section-description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-contact__responsible-image {
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  object-fit: cover;
}

/* Office & Hours Section */
.page-contact__office-hours {
  padding: 80px 0;
  background-color: #121212; /* Dark background from body */
  color: #ffffff;
}

.page-contact__office-hours .page-contact__section-title {
  color: #26A9E0;
}

.page-contact__office-hours .page-contact__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

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

.page-contact__info-item {
  background: #282828;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-contact__info-item .page-contact__info-title {
  color: #26A9E0;
}

.page-contact__info-item .page-contact__info-text {
  color: #f0f0f0;
}

/* Social Media Section */
.page-contact__social-media {
  padding: 80px 0;
  background-color: #1a1a1a; /* Adjusted for dark body background */
  color: #f0f0f0;
  text-align: center;
}

.page-contact__social-media .page-contact__section-title {
  color: #26A9E0;
}

.page-contact__social-media .page-contact__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

.page-contact__social-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-contact__social-icon:hover {
  background-color: #1e87b7;
}

/* Placeholder icons for social media, in a real scenario these would be SVGs or font icons */
.page-contact__social-facebook::before { content: 'f'; font-family: 'Font Awesome 5 Brands', sans-serif; /* Example */ }
.page-contact__social-twitter::before { content: 't'; font-family: 'Font Awesome 5 Brands', sans-serif; /* Example */ }
.page-contact__social-instagram::before { content: 'i'; font-family: 'Font Awesome 5 Brands', sans-serif; /* Example */ }
.page-contact__social-telegram::before { content: 'T'; font-family: 'Font Awesome 5 Brands', sans-serif; /* Example */ }

/* Responsive Design */
@media (max-width: 1024px) {
  .page-contact__main-title {
    font-size: 2.8em;
  }

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

@media (max-width: 768px) {
  .page-contact {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-contact__hero-section {
    padding: 80px 15px;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure space for fixed header on mobile */
  }

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

  .page-contact__intro-text {
    font-size: 1em;
  }

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

  .page-contact__section-description {
    font-size: 0.95em;
  }

  .page-contact__method-title,
  .page-contact__info-title {
    font-size: 1.5em;
  }

  .page-contact__contact-methods,
  .page-contact__faq-section,
  .page-contact__responsible-gambling,
  .page-contact__office-hours,
  .page-contact__social-media {
    padding: 60px 0;
  }

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

  .page-contact__methods-grid,
  .page-contact__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-contact__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-contact__faq-answer {
    padding: 18px 20px;
    font-size: 0.95em;
  }

  /* Image responsive adaptation */
  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__section,
  .page-contact__card,
  .page-contact__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button responsive adaptation */
  .page-contact__btn-primary,
  .page-contact__btn-secondary,
  .page-contact a[class*="button"],
  .page-contact a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-contact__cta-buttons,
  .page-contact__button-group,
  .page-contact__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-contact__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Video responsive adaptation (if any video were present) */
  .page-contact video,
  .page-contact__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-contact__video-section,
  .page-contact__video-container,
  .page-contact__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}