/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 80px 0;
}

.contact-section h2 {
  font-weight: 700;
  color: #2a1f1f;
}

/* ================= CONTACT INFO CARD ================= */
.contact-info-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-item i {
  font-size: 22px;
  color: #0c0c0c;
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-item a {
  color: #374151;
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  color: #eab308;
  text-decoration: underline;
}

/* ================= FORM ================= */
.form-control {
  border-radius: 8px;
  padding: 12px;
}

.form-control:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 0.15rem rgba(250, 204, 21, 0.35);
}

button {
  background: #facc15;
  border: none;
  font-weight: 700;
}

button:hover {
  background: #eab308;
}

/* ================= MAP REVEAL ANIMATION ================= */
.map-animate {
  opacity: 0;
  transform: translateX(80px);
  animation: mapReveal 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Keyframes */
@keyframes mapReveal {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= MAP STYLING ================= */
.map-cover {
  height: 100%;
  background: linear-gradient(135deg, #facc15, #f97316);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.map-cover h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2a1f1f;
}

/* Map iframe */
.map-cover iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  border: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .map-cover iframe {
    min-height: 260px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .thankyou-cover {
    margin-top: 40px;
    height: auto;
  }
}
