.contact-section {
  padding: 80px 30px;
  background: #d9f0fc;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* FORM */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
}

.contact-form h2 {
  color: #004a99;
  margin-bottom: 10px;
  font-size: 1.8em;
}

.contact-form p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.contact-form button {
  background: linear-gradient(to right, #00c6ff, #0072ff);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #0072ff, #00c6ff);
}

/* MAP + INFO */
.contact-map-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  margin-bottom: 25px;
}

/* INFO */
.contact-info {
  color: #004a99;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info a {
  color: #0073e6;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form,
  .contact-map-box {
    max-width: 53%;
    padding: 25px;
  }

  .map-embed {
    height: 250px;
  }
}
