/* Contact Page Specific Styles */

.contact-hero {
  height: 40vh;
  min-height: 250px;
  background-image: url('https://images.pexels.com/photos/2682452/pexels-photo-2682452.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  margin-top: 76px;
}

.contact-hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  min-width: 40px;
  height: 40px;
  background-color: rgba(255, 152, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Open Sans', sans-serif;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.map-section {
  padding: 0 0 5rem;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .contact-hero {
    height: 30vh;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 576px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .map-container {
    height: 350px;
  }
}