/* DARK CONTACT SECTION */
.contact-dark {
  background: radial-gradient(circle at top, #0d1025, #05050c);
  padding: 100px 8%;
  color: white;
  min-height: 100vh;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT */
.mini-label {
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #3456d3;
  margin-bottom: 15px;
}

.contact-left h1 {
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sub-text {
  font-size: 16px;
  color: #bfc6ff;
  max-width: 450px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.info-block p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ddd;
}

.info-block span {
  color: #3456d3;
  font-weight: 600;
}

/* BUTTON */
.blue-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 22px;
  background: #3456d3;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.blue-btn:hover {
  background: white;
  color: #05050c;
}

/* RIGHT FORM */
.contact-right {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(52, 86, 211, 0.25);
  padding: 40px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.contact-right h2 {
  font-size: 24px;
  margin-bottom: 25px;
}

/* INPUTS */
.input-box {
  margin-bottom: 18px;
}

.input-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  font-size: 15px;
}

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
  outline: none;
  border-color: #3456d3;
}

/* TEXTAREA */
textarea {
  height: 120px;
  resize: none;
}

/* SUBMIT */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #3456d3;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: white;
  color: #05050c;
}

/* SUCCESS */
#successMsg {
  margin-top: 15px;
  color: #4cff9a;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left h1 {
    font-size: 36px;
  }
}
/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* distance from bottom */
  right: 20px;        /* distance from right */
  width: 60px;        /* icon size */
  height: 60px;
  z-index: 1000;      /* ensures it stays on top */
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* slight hover effect */
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}
