/* ================= GLOBAL ================= */
.section {
  padding: 60px 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ================= HERO ================= */
.contact-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2a66 0%, #1a3b99 100%);
  color: #fff;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

.wave-path {
  animation: wave-move 8s ease-in-out infinite;
}

@keyframes wave-move {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-20px) translateY(2px); }
  100% { transform: translateX(0) translateY(0); }
}

/* ================= CONTACT FORM ================= */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-form h2 {
  color: #0a2a66;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #0a2a66;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 2px solid #0a2a66;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 6px rgba(255,215,0,0.4);
}

.contact-form button {
  cursor: pointer;
}

.form-status {
  font-weight: 500;
  margin-top: 8px;
}

/* ================= CONTACT INFO ================= */
.contact-info h2 {
  color: #0a2a66;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #FFD700;
  color: #0a2a66;
  border: none;
}

.btn-primary:hover {
  background: #D32F2F;
  color: #fff;
}
