/* style/contact.css */
.page-contact {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #1a242f; /* Dark background for overall page */
}

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

.page-contact__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-contact__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5) blur(2px);
}

.page-contact__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.7), rgba(44, 62, 80, 0.7));
  z-index: 1;
}

.page-contact__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #F39C12; /* Emphasize with accent color */
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.page-contact__section {
  padding: 60px 0;
  text-align: center;
}

.page-contact__section-title {
  font-size: 2.5em;
  color: #C0392B; /* Main brand color for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-contact__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #B0B0B0;
}

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

.page-contact__option-card {
  background-color: #2C3E50; /* Auxiliary color for cards */
  padding: 30px;
  border-radius: 10px;
  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;
  align-items: center;
}

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

.page-contact__option-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(1) brightness(1.2);
}

.page-contact__option-card h3 {
  color: #F39C12; /* Accent color for card titles */
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-contact__option-card p {
  color: #CCCCCC;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-contact__btn {
  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;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-contact__btn--email {
  background-color: #C0392B;
  color: #FFFFFF;
}

.page-contact__btn--email:hover {
  background-color: #e74c3c;
}

.page-contact__btn--chat {
  background-color: #F39C12;
  color: #2C3E50;
}

.page-contact__btn--chat:hover {
  background-color: #f1c40f;
}

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

.page-contact__social-icon {
  color: #F39C12;
  font-size: 1.8em;
  transition: color 0.3s ease;
}

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

.page-contact__contact-form-section {
  background-color: #222e3c; /* Slightly lighter dark background */
  padding-bottom: 80px;
}

.page-contact__form {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: #2C3E50;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}

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

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

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #555;
  border-radius: 5px;
  background-color: #3e5066;
  color: #FFFFFF;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__form-group input:focus,
.page-contact__form-group textarea:focus {
  border-color: #C0392B;
  box-shadow: 0 0 8px rgba(192, 57, 43, 0.6);
  outline: none;
}

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

.page-contact__btn--submit {
  background-color: #C0392B;
  color: #FFFFFF;
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  margin-top: 20px;
}

.page-contact__btn--submit:hover {
  background-color: #e74c3c;
}

.page-contact__cta-section {
  position: relative;
  padding: 80px 0;
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-contact__cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4) blur(1px);
}

.page-contact__cta-section .page-contact__container {
  position: relative;
  z-index: 1;
}

.page-contact__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F39C12;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-contact__btn--primary {
  background-color: #C0392B;
  color: #FFFFFF;
}

.page-contact__btn--primary:hover {
  background-color: #e74c3c;
}

.page-contact__btn--secondary {
  background-color: #2C3E50;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-contact__btn--secondary:hover {
  background-color: #F39C12;
  color: #2C3E50;
}

.page-contact .highlight-text {
  color: #F39C12;
  font-weight: bold;
}

/* Font Awesome for social icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Responsive Design */
@media (max-width: 768px) {
  .page-contact__hero {
    padding: 80px 0;
    min-height: 300px;
  }

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

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

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

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

  .page-contact__form {
    padding: 25px;
  }

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

  .page-contact__cta-buttons {
    flex-direction: column;
  }

  .page-contact__btn {
    width: 100%;
    max-width: 300px; /* Limit button width on small screens */
  }
}

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

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

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

  .page-contact__option-card h3 {
    font-size: 1.5em;
  }

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