body {
  padding-top: 64px;
}

.contact-hero {
  padding: 90px 0 60px;
  background: #f4f8ff;
}

.contact-hero h1 {
  color: #0d4aa8;
  font-weight: 700;
}

.contact-hero p {
  color: #555;
  margin-top: 10px;
}

.contact-main {
  padding: 70px 0;
}

.contact-form-box {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-form-box h3 {
  color: #0d4aa8;
  font-weight: 600;
  margin-bottom: 20px;
}

.success-msg {
  color: #2e9b45;
  text-align: center;
  margin-top: 15px;
  font-weight: 500;
}

.contact-details-box {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.detail-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.detail-item i {
  font-size: 1.6rem;
  color: #2e9b45;
}

.detail-item h6 {
  color: #0d4aa8;
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

.contact-map {
  padding: 0 0 80px;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
}

@media (max-width: 768px) {
  body {
    padding-top: 58px;
  }

  .contact-hero {
    padding: 70px 0 50px;
  }

  .contact-main {
    padding: 50px 0;
  }

  .contact-map iframe {
    height: 260px;
  }
}


/*whasapp button*/
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  color: #ffffff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}
