/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text on dark background */
  background-color: #1A202C;
}

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

.page-contact__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

.page-contact__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #E2E8F0;
}

.page-contact__hero-description strong {
  color: #FFD700;
}

.page-contact__section {
  padding: 60px 0;
  background-color: #1A202C;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-contact__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-contact__info-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-contact__info-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-contact__info-item p {
  color: #CBD5E0;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-contact__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-contact__link:hover {
  color: #E2E8F0;
  text-decoration: underline;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #2D3748;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__input,
.page-contact__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #4A5568;
  border-radius: 8px;
  background-color: #1A202C;
  color: #E2E8F0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

.page-contact__textarea {
  resize: vertical;
}

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

.page-contact__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-contact__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-contact__button--accent {
  background-color: #FFD700;
  color: #1A202C;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-contact__button--accent:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-contact__form-message {
  margin-top: 20px;
  text-align: center;
  font-size: 1.1em;
  color: #FFD700;
}

.page-contact__cta-section {
  background-color: #2D3748;
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: linear-gradient(90deg, #1A202C, #4A5568);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  width: 300px; /* Specific width for visual consistency */
  height: 200px; /* Specific height for visual consistency */
}

.page-contact__cta-text h2 {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-contact__cta-text p {
  font-size: 1.1em;
  color: #CBD5E0;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-contact__cta-text strong {
  color: #FFD700;
}

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

  .page-contact__cta-text {
    padding-left: 40px;
  }

  .page-contact__cta-image {
    width: 400px; 
    height: 250px;
  }

  .page-contact__hero-title {
    font-size: 4.5em;
  }

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

@media (max-width: 767px) {
  .page-contact__hero {
    padding: 60px 0;
  }

  .page-contact__hero-title {
    font-size: 2.8em;
  }

  .page-contact__hero-description {
    font-size: 1em;
  }

  .page-contact__section {
    padding: 40px 0;
  }

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

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

  .page-contact__form {
    padding: 30px;
  }

  .page-contact__input,
  .page-contact__textarea,
  .page-contact__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-contact__cta-content {
    padding: 30px;
  }

  .page-contact__cta-text h2 {
    font-size: 1.8em;
  }

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