.contact {
  background-color: var(--off-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.05) 0%, rgba(10, 25, 47, 0) 100%);
  z-index: 0;
}

.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title h2 {
  color: var(--navy-blue);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.contact-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--gold);
}

.contact-title p {
  color: var(--text-dark);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-header p {
  color: var(--silver-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 2.5rem;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: var(--gold);
  color: var(--navy-blue);
}

.contact-text h4 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-text p {
  color: var(--silver-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.contact-social-link:hover {
  background-color: var(--gold);
  color: var(--navy-blue);
  transform: translateY(-3px);
}

.contact-map {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding: 2rem;
  }
  
  .contact-map {
    min-height: 350px;
  }
}

@media screen and (max-width: 576px) {
  .contact {
    padding: 3rem 0;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .contact-info-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-map {
    min-height: 250px;
  }
}
