.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-title h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.contact-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.contact-header h3 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-details {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 25px;
}

.contact-icon {
  color: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
  font-size: 1.4rem;
  text-align: center;
  margin-top: 5px;
}

.contact-content h4 {
  color: #333;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-content p,
.contact-content a {
  color: #666;
  margin: 0;
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact-content a:hover {
  color: linear-gradient(135deg, #FF6B00 0%, #FFA500 100%);
}

.whatsapp-cta {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  text-align: center;
}

.whatsapp-btn {
  background: #25D366;
  color: white !important;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18,140,126,0.3);
}

@media (max-width: 992px) {
  .map-container {
      margin-bottom: 30px;
      height: 400px;
  }
  
  .contact-info {
      padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
      padding: 50px 0;
  }
  
  .contact-title h2 {
      font-size: 2rem;
  }
  
  .contact-header h3 {
      font-size: 1.5rem;
  }
  
  .whatsapp-cta {
      padding: 20px;
  }
}