/* style/contact.css */
.page-contact {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-contact-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.page-contact-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.7), rgba(255, 215, 0, 0.5)); /* #001F3F and #FFD700 */
  z-index: 2;
}

.page-contact-hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
}

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

.page-contact-subtitle {
  font-size: 1.5em;
  color: #fff;
  font-weight: 300;
}

.page-contact-section-heading {
  font-size: 2.5em;
  color: #001F3F; /* Dark blue for headings */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-contact-info-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-contact-info-section .page-contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-contact-info-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-contact-icon {
  font-size: 3em;
  color: #FFD700; /* Gold icon */
  margin-bottom: 15px;
  display: inline-block;
}

/* Placeholder icons for demonstration */
.page-contact-icon-phone::before { content: '📞'; }
.page-contact-icon-email::before { content: '📧'; }
.page-contact-icon-address::before { content: '📍'; }

.page-contact-info-title {
  font-size: 1.8em;
  color: #001F3F;
  margin-bottom: 10px;
}

.page-contact-info-text {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.page-contact-info-description {
  font-size: 0.95em;
  color: #666;
}

.page-contact-form-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-contact-form-content {
  text-align: center;
}

.page-contact-form-content .page-contact-section-heading,
.page-contact-form-content .page-contact-section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-contact-illustration {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.page-contact-form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #001F3F;
}

.page-contact-form-input,
.page-contact-form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.page-contact-form-input:focus,
.page-contact-form-textarea:focus {
  border-color: #FFD700;
  outline: none;
}

.page-contact-form-textarea {
  resize: vertical;
}

.page-contact-btn {
  display: inline-block;
  background-color: #001F3F; /* Dark blue button */
  color: #fff;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-contact-btn:hover {
  background-color: #003366; /* Slightly lighter dark blue */
  transform: translateY(-2px);
}

.page-contact-btn-primary {
  background-color: #001F3F;
}

.page-contact-btn-primary:hover {
  background-color: #003366;
}

.page-contact-btn-secondary {
  background-color: #FFD700;
  color: #001F3F;
  margin-left: 15px;
}

.page-contact-btn-secondary:hover {
  background-color: #e6c200;
}

.page-contact-map-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-contact-map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.2em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-contact-map-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-contact-cta-section {
  background: linear-gradient(90deg, #001F3F, #003366);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-contact-cta-heading {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-contact-cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-contact-title {
    font-size: 3em;
  }
  .page-contact-subtitle {
    font-size: 1.3em;
  }
  .page-contact-section-heading {
    font-size: 2em;
  }
  .page-contact-cta-heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-contact-hero {
    height: 300px;
  }
  .page-contact-title {
    font-size: 2.5em;
  }
  .page-contact-subtitle {
    font-size: 1.1em;
  }
  .page-contact-info-section .page-contact-container {
    grid-template-columns: 1fr;
  }
  .page-contact-form-grid {
    grid-template-columns: 1fr;
  }
  .page-contact-form-content .page-contact-section-heading,
  .page-contact-form-content .page-contact-section-description {
    text-align: center;
  }
  .page-contact-illustration {
    margin-top: 20px;
  }
  .page-contact-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-contact-btn-secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-contact-hero {
    height: 250px;
  }
  .page-contact-title {
    font-size: 2em;
  }
  .page-contact-subtitle {
    font-size: 1em;
  }
  .page-contact-info-card {
    padding: 20px;
  }
  .page-contact-info-title {
    font-size: 1.5em;
  }
  .page-contact-form-wrapper {
    padding: 25px;
  }
  .page-contact-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-contact-cta-heading {
    font-size: 1.8em;
  }
  .page-contact-cta-description {
    font-size: 1em;
  }
}