.contact-section {
  background: #f6f3ef;
  padding: 100px 0;
}

/* HEADER */

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 38px;
  color: #0e3c4c;
  margin-bottom: 10px;
}

.contact-header p {
  color: #666;
}

/* LAYOUT */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT INFO */

.contact-info {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease;
}

.contact-info h4 {
  color: #0e3c4c;
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 8px;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.contact-info li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ff5a2c;
}

/* FORM */

.contact-form {
  background: #2fa7d7;
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  animation: fadeUp 1.2s ease;
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 28px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* CAPTCHA */

.captcha-box {
  margin-bottom: 20px;
}

.captcha-box label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

/* BUTTON */

.submit-btn {
  background: #ff5a2c;
  border: none;
  padding: 12px 28px;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e0481f;
  transform: translateY(-3px);
}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* MAP SECTION */

.map-section {
  background: #ffffff;
  padding: 100px 0;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 {
  font-size: 36px;
  color: #0e3c4c;
  margin-bottom: 10px;
}

.map-header p {
  color: #666;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1s ease;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* responsive */

@media (max-width: 768px) {
  .map-header h2 {
    font-size: 28px;
  }
}
