/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
}

body {
  background: linear-gradient(135deg, #E3F2FD, #90CAF9);
  color: #333;
font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: clamp(60px, 10vw, 120px) 16px;
  background: linear-gradient(135deg, #e9f4ff, #cfe8ff);
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 60%);
  animation: glowMove 12s linear infinite;
  pointer-events: none; /* INI KUNCI */
}

.contact-form-wrapper,
.contact-header,
.contact-info {
  position: relative;
  z-index: 2;
}
/* Heading lebih galak */
.contact-header h2 {
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Input lebih premium */
.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  background: #f8fbff;
}

/* Placeholder custom */
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: #8fa8c7;
  font-weight: 500;
}

/* Button WOW */
.btn-submit {
  font-size: 16px;
  letter-spacing: 1px;
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================= HEADER ================= */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #0f2a44;
  margin-bottom: 12px;
      font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  color: #375a7f;
  line-height: 1.6;
      font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ================= CONTACT INFO ================= */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  text-decoration: none;
  color: #0f2a44;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.info-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-card .text {
  font-size: 14px;
  font-weight: 600;
      font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ================= FORM ================= */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 28px;
  color: #0f2a44;
      font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #cfe3f7;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  border-color: #5da9ff;
  box-shadow: 0 0 0 3px rgba(93, 169, 255, 0.2);
}

.contact-form-wrapper textarea {
  margin-top: 16px;
  resize: none;
}

/* ================= BUTTON ================= */
.btn-submit {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #6fb1ff, #4a90e2);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(74, 144, 226, 0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
  .contact-header p {
    font-size: 14px;
        font-family: 'Plus Jakarta Sans', sans-serif;
  }
}
.footer {
  background-color: #0F172A   /* Tailwind navy */; /* navy gelap elegan */
  padding: 40px 20px;
  color: #ffffff;
  text-align: center;
}

.footer-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1EA0FF;
  display: inline-block;
  padding-bottom: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-section a {
  display: block;
  color: #cfe8ff;
  margin: 6px 0;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.7;
}
html {
  scroll-behavior: smooth;
}