.page-contact {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is #000 from shared.css */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-contact__hero-section {
  position: relative;
  padding: 120px 20px 80px; /* Adjust padding-top for fixed header */
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.1)), url('[GALLERY:contact:sv388 bet,cá cược trực tuyến Việt Nam,hỗ trợ khách hàng,banner,gold red,hiện đại]') no-repeat center center/cover;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-contact__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for title */
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  font-weight: bold;
}

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

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

.page-contact__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-contact__cta-button--primary {
  background: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-contact__cta-button--primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-contact__cta-button--secondary:hover {
  background: #FFD700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__info-section {
  padding: 80px 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
  text-align: center;
}

.page-contact__info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__section-description {
  font-size: 1.1em;
  margin-bottom: 50px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-contact__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__card-icon {
  width: 150px; /* Increased size for content image */
  height: 150px; /* Increased size for content image */
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-contact__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-contact__card-detail {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-contact__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #DC143C;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-contact__card-button:hover {
  background: #b20f32;
}

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

.page-contact__social-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-contact__social-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-contact__form-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
  text-align: center;
}

.page-contact__form-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-contact__contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
  color: #999999;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  outline: none;
}

.page-contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-contact__submit-button {
  display: block;
  width: 100%;
  padding: 15px 30px;
  background: #DC143C;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
}

.page-contact__submit-button:hover {
  background: #b20f32;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__location-section {
  padding: 80px 20px;
  background-color: rgba(255, 215, 0, 0.05); /* Light gold tint for background */
  text-align: center;
}

.page-contact__location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-contact__location-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}

.page-contact__address-details {
  flex: 1;
  min-width: 300px;
  text-align: left;
  color: #cccccc;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-contact__address-details strong {
  color: #FFD700;
}

.page-contact__map-wrapper {
  flex: 2;
  min-width: 300px;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__map-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-contact__cta-section {
  padding: 80px 20px;
  background: linear-gradient(90deg, #DC143C, #FFD700); /* Red to Gold gradient */
  text-align: center;
  color: #ffffff;
}

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

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

.page-contact__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-contact__cta-button--large {
  display: inline-block;
  padding: 18px 45px;
  background: #000000; /* Black button on gradient */
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 10px;
  font-size: 1.3em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-button--large:hover {
  background: #222222;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-small-text {
  margin-top: 30px;
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-contact__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-contact__inline-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-contact__hero-section {
    padding: 100px 15px 60px; /* Mobile padding-top */
  }
  .page-contact__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-contact__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-contact__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__location-section,
  .page-contact__cta-section {
    padding: 60px 15px;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-contact__contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-contact__card {
    padding: 25px;
  }
  .page-contact__card-icon {
    width: 120px;
    height: 120px;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__form-label {
    font-size: 1em;
  }
  .page-contact__form-input,
  .page-contact__form-textarea {
    padding: 10px 12px;
    font-size: 0.95em;
  }
  .page-contact__submit-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-contact__location-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-contact__address-details,
  .page-contact__map-wrapper {
    min-width: unset;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-contact__cta-title {
    font-size: 2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Image and video 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,
  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__location-section,
  .page-contact__cta-section,
  .page-contact__hero-container,
  .page-contact__info-container,
  .page-contact__form-container,
  .page-contact__location-container,
  .page-contact__cta-container,
  .page-contact__hero-cta-buttons,
  .page-contact__contact-cards,
  .page-contact__social-links,
  .page-contact__location-content,
  .page-contact__address-details,
  .page-contact__map-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important; /* Ensure no overflow */
  }
  .page-contact__hero-section,
  .page-contact__info-section,
  .page-contact__form-section,
  .page-contact__location-section,
  .page-contact__cta-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__section-title {
    font-size: 1.5em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__card-icon {
    width: 100px;
    height: 100px;
  }
}