/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A2342; /* Deep blue primary background */
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5E 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.page-contact__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-contact__description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.page-contact__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-contact__info-section {
  padding: 60px 0;
  background-color: #0A2342;
}

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

.page-contact__contact-card {
  background-color: #1A3A5E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-contact__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-contact__card-text {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.page-contact__button--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-contact__button--primary:hover {
  background-color: #E6C200;
  border-color: #E6C200;
}

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

.page-contact__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-contact__cta-section {
  background: linear-gradient(90deg, #0A2342, #2A4C70);
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

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

.page-contact__cta-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-contact__cta-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-contact__button--hero {
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px 40px;
  font-size: 1.3em;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__button--hero:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__map-section {
  padding: 60px 0;
  background-color: #0A2342;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-contact__address {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-contact__map-placeholder {
  width: 100%;
  max-width: 800px;
  height: 400px;
  background-color: #1A3A5E;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .page-contact__description,
  .page-contact__card-text,
  .page-contact__cta-text,
  .page-contact__address {
    font-size: 0.95em;
  }

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

  .page-contact__button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-contact__button--hero {
    padding: 12px 30px;
    font-size: 1.1em;
  }

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

  .page-contact__map-placeholder {
    height: 300px;
  }
}

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

  .page-contact__hero,
  .page-contact__info-section,
  .page-contact__cta-section,
  .page-contact__map-section {
    padding: 40px 0;
  }

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

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

  .page-contact__icon {
    width: 50px;
    height: 50px;
  }

  .page-contact__map-placeholder {
    height: 200px;
  }
}