/* Contact Page Styles */

.page-hero {
  position: relative;
  color: var(--color-white);
  padding: 6rem 1rem 4rem;
  text-align: center;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.contact-section {
  padding: 4rem 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  color: #092a4a;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.contact-form {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #092a4a;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f29f05;
  box-shadow: 0 0 0 3px rgba(242, 159, 5, 0.15);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.info-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #f29f05;
}

.info-card h3 {
  color: #092a4a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-card p {
  color: #526274;
  line-height: 1.6;
}

.info-card a {
  color: #0052cc;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.follow-us-icons {
  display: flex;
  gap: 1.2rem;
}

.follow-us-icons a {
  color: #092a4a;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.follow-us-icons a:hover {
  color: #f29f05;
}

.faq-section {
  margin: 4rem 0;
}

.faq-section h2 {
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  color: #092a4a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.faq-item h3 {
  color: #092a4a;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #526274;
  line-height: 1.5;
  font-size: 0.9rem;
}

.cta-section {
  background: #092a4a;
  color: white;
  padding: 3rem;
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 0.8rem;
}

.cta-section p {
  color: #e8f0ff;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
