/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0A192F; /* Deep Navy Blue */
}

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

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

.page-contact__hero-title {
  font-size: 3em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-subtitle {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-contact__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: none;
}

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

.page-contact__btn--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
  background-color: #1A2E4B;
  transform: translateY(-2px);
}

.page-contact__btn--large {
  padding: 18px 40px;
  font-size: 1.1em;
}

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

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

.page-contact__info-card {
  background-color: #1A2E4B;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__info-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: 10px;
}

.page-contact__card-description {
  color: #CCCCCC;
  margin-bottom: 15px;
}

.page-contact__card-detail {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700;
}

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

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

.page-contact__social-icon-link:hover {
  color: #E0B500;
}

.page-contact__form-section {
  padding: 60px 0;
  background-color: #0A192F;
}

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

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

.page-contact__contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A2E4B;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
  width: calc(100% - 20px);
  padding: 12px;
  border: 1px solid #334768;
  border-radius: 5px;
  background-color: #0A192F;
  color: #FFFFFF;
  font-size: 1em;
  box-sizing: border-box;
}

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

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

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

.page-contact__contact-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
}

.page-contact__cta-section {
  background: linear-gradient(45deg, #0A192F, #1A2E4B);
  padding: 80px 0;
  text-align: center;
}

.page-contact__cta-content {
  background-color: rgba(26, 46, 75, 0.8);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-contact__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.page-contact__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero-title {
    font-size: 2.2em;
  }
  .page-contact__hero-subtitle {
    font-size: 1em;
  }
  .page-contact__info-grid {
    grid-template-columns: 1fr;
  }
  .page-contact__card-title {
    font-size: 1.5em;
  }
  .page-contact__section-title {
    font-size: 2em;
  }
  .page-contact__cta-title {
    font-size: 2.2em;
  }
  .page-contact__cta-description {
    font-size: 1em;
  }
  .page-contact__contact-form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .page-contact__hero-title {
    font-size: 1.8em;
  }
  .page-contact__hero-subtitle {
    font-size: 0.9em;
  }
  .page-contact__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-contact__section-title {
    font-size: 1.8em;
  }
  .page-contact__cta-title {
    font-size: 1.8em;
  }
  .page-contact__cta-content {
    padding: 30px;
  }
}