/* Contact Section Styles */
.contact {
  background-color: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contact-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-icon i {
  font-size: 24px;
  color: var(--light-color);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--dark-gray);
  line-height: 1.6;
}
.contact-link {
  color: #007bff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.location-map {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  width: 100%;
}

.location-map h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
  
  .location-map {
    padding: 20px;
  }
  
  .map-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 300px;
  }
}