.contact-section {
  padding: 80px 10%;
  background: radial-gradient(circle at top, #42a2d4, #001f2f);
}

.contact-section h2 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 50px;
  color: #00bcd4;
  text-shadow: 0 0 10px #00bcd4;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form, .contact-info {
  flex: 1 1 400px;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form button {
  background-color: #00bcd4;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00796b;
}

.contact-info h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #00796b;
}

.contact-info p {
  font-size: 1em;
  margin-bottom: 10px;
  line-height: 1.6;
}

.social-links {
  margin: 20px 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: background-color 0.3s ease;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background-color: #e1306c; }
.social-icon.youtube { background-color: #ff0000; }

.social-icon:hover {
  opacity: 0.8;
}

.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: bold;
}

.alert.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-section h2 {
    font-size: 2.2em;
  }
}