/* Hero Section */
.contact-hero-section {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background-image: url('https://images.pexels.com/photos/1396132/pexels-photo-1396132.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1');
  background-size: cover;
  background-position: center;
  color: var(--color-text-white);
}

.contact-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.contact-hero-section img {
background: linear-gradient(135deg, rgba(10, 35, 66, 0.9) 0%, rgba(10, 25, 41, 0.8) 100%);
}

.contact-quick-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.quick-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  color: var(--color-text-white);
  backdrop-filter: blur(10px);
  transition: all var(--transition-medium);
}

.quick-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--color-text-white);
}

.quick-link-icon {
  font-size: 1.5rem;
}

.quick-link-text {
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--color-bg-white);
}

.office-details {
  margin-top: var(--space-4);
}

.office-card {
  background: var(--color-bg-white);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-3);
  transition: all var(--transition-medium);
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.office-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  font-size: 1.5rem;
}

.office-card p {
  color: var(--color-text-medium);
  margin-bottom: 0.5rem;
}

.office-hours {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.office-hours h4 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-bg-white);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-control {
  padding: 0.75rem var(--space-3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.2rem rgba(213, 160, 33, 0.25);
}

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

/* Map Section */
.map-section {
  padding-bottom: var(--space-8);
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* CTA Section */
.contact-cta {
  background-color: var(--color-primary);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .contact-hero-section {
    height: 50vh;
  }
  
  .contact-quick-links {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .quick-link {
    width: fit-content;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-section {
    height: auto;
    padding: var(--space-8) 0;
  }
  
  .office-card {
    padding: var(--space-3);
  }
  
  .contact-form-wrapper {
    padding: var(--space-3);
  }
}

@media (max-width: 575.98px) {
  .quick-link {
    width: 100%;
  }
  
  .map-wrapper {
    margin: 0 -15px;
    border-radius: 0;
  }
}