body {
  background: #f8fafc;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.7s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card {
  border-radius: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: #ecfdf5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e2611;
  font-size: 22px;
  flex-shrink: 0;
}

.form-control,
textarea {
  background: #f1f5f9;
  border-radius: 20px;
  padding: 16px 20px;
  border: 1px solid #e2e8f0;
}

.form-control:focus,
textarea:focus {
  border-color: #6e2611;
  box-shadow: none;
}

.btn-emerald {
  background: #6e2611;
  color: #fff;
  font-weight: 700;
  padding: 16px;
  border-radius: 20px;
  font-size: 18px;
}

.btn-emerald:hover {
  background: #6e2611;
}

.map-box {
  border-radius: 30px;
  overflow: hidden;
  height: 320px;
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.success-box {
  display: none;
  height: 100%;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #6e2611;
}

.submit-btn {
  background: #6e2611;
  color: #fff;
  padding: 14px;
  border-radius: 16px;
  font-weight: 600;
  border: none;
}

.submit-btn:hover {
  background: #6e2611;
}

.dark-btn:hover {
  background: #09172d !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
  .fade-in {
    margin-top: 30% !important;
  }
}
