.page-contact {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Matches body background */
}

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

.page-contact__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  min-height: 500px;
}

.page-contact__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.page-contact__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 60px 20px;
  color: #FFF5E1;
}

.page-contact__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1; /* Gold text */
  text-shadow: 0 0 10px rgba(255, 204, 102, 0.7);
}

.page-contact__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-contact__channels-section,
.page-contact__form-section,
.page-contact__faq-section,
.page-contact__responsible-gambling,
.page-contact__location-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
  color: #FFF5E1; /* Text Main */
}

.page-contact__channels-section {
  background-color: #7A0E0E; /* Deep Red */
}

.page-contact__form-section {
  background-color: #C91F17; /* Main Color */
}

.page-contact__faq-section {
  background-color: #E53935; /* Auxiliary Color */
}

.page-contact__responsible-gambling {
  background-color: #7A0E0E; /* Deep Red */
}

.page-contact__location-section {
  background-color: #C91F17; /* Main Color */
}

.page-contact__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFF5E1; /* Text Main */
  text-shadow: 0 0 5px rgba(255, 204, 102, 0.5);
}

.page-contact__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

.page-contact__contact-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-contact__card-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 8px #FFCC66); /* Glow */
}

.page-contact__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-contact__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-contact__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for text on gold button */
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__button--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-contact__button--secondary {
  background-color: transparent;
  color: #F4D34D; /* Gold */
  border: 2px solid #F2B544; /* Border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-contact__button--secondary:hover {
  background-color: rgba(244, 211, 77, 0.1);
  color: #FFF5E1;
  border-color: #FFF5E1;
}

.page-contact__social-media {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(242, 181, 68, 0.3);
}

.page-contact__social-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold */
}

.page-contact__social-text {
  font-size: 1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-contact__social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-contact__social-icon-link img {
  
  
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 204, 102, 0.5));
}

.page-contact__social-icon-link img:hover {
  transform: translateY(-5px) scale(1.1);
  filter: drop-shadow(0 0 10px #FFCC66);
}

.page-contact__contact-form {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background-color: #D32F2F; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #F2B544; /* Border */
}

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

.page-contact__form-label {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #FFF5E1; /* Text Main */
  font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #F2B544; /* Border */
  background-color: rgba(0, 0, 0, 0.4);
  color: #FFF5E1;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: rgba(255, 245, 225, 0.7);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFCC66; /* Glow */
  background-color: rgba(0, 0, 0, 0.6);
  outline: none;
  box-shadow: 0 0 8px rgba(255, 204, 102, 0.5);
}

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

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

.page-contact__faq-item {
  background-color: #D32F2F; /* Card BG */
  border: 1px solid #F2B544; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F4D34D; /* Gold */
  cursor: pointer;
  background-color: #D32F2F; /* Card BG */
  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: rgba(244, 211, 77, 0.1);
}

.page-contact__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFCC66; /* Glow */
  margin-left: 15px;
}

.page-contact__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-contact__responsible-gambling .page-contact__button,
.page-contact__location-section .page-contact__button {
  margin-top: 30px;
}

.page-contact__location-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #F2B544; /* Border */
  object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-contact__container {
    padding: 0 15px;
  }

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

  .page-contact__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .page-contact__channels-section,
  .page-contact__form-section,
  .page-contact__faq-section,
  .page-contact__responsible-gambling,
  .page-contact__location-section {
    padding: 40px 0;
  }

  .page-contact__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }

  .page-contact__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .page-contact__contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-contact__contact-card {
    padding: 25px;
  }

  .page-contact__card-title {
    font-size: 1.3rem;
  }

  .page-contact__card-text {
    font-size: 0.9rem;
  }

  .page-contact__button {
    padding: 10px 20px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-contact__social-media {
    margin-top: 40px;
    padding-top: 30px;
  }

  .page-contact__social-title {
    font-size: 1.5rem;
  }

  .page-contact__social-text {
    font-size: 0.9rem;
  }

  .page-contact__social-icons {
    gap: 15px;
  }

  .page-contact__social-icon-link img {
    
    
  }

  .page-contact__contact-form {
    padding: 30px;
  }

  .page-contact__form-label {
    font-size: 1rem;
  }

  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .page-contact__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-contact__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }

  .page-contact img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !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;
  }

  .page-contact__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .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;
  }
}