/* HERO */

.contact-hero {
  background: linear-gradient(135deg, var(--hospital-blue) 0%, var(--dark-blue) 100%);
  padding: 80px 0;
  color: white;
   --dark-blue: #0a3d62;
  --hospital-blue: #1a5f7a;
}

.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.contact-hero p {
  opacity: 0.9;
}

/* INFO CARDS */

.contact-info-section {
  padding: 60px 0;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card i {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 15px;
}

/* FORM SECTION */

.contact-form-section {
  padding: 70px 0;
  background: #f6f9fc;
}

.form-box {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.form-box h3 {
  margin-bottom: 20px;
  color: #0d47a1;
}

.form-control {
  padding: 12px;
  border-radius: 10px;
}

/* BUTTON */

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg,#1976d2,#0d47a1);
  border: none;
  padding: 12px;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: linear-gradient(135deg,#0d47a1,#1976d2);
}

/* MAP */

.map-box iframe {
  width: 100%;
  height: 420px;
  border-radius: 15px;
  border: none;
}

/* MOBILE */

@media(max-width:768px){

.contact-hero h1 {
  font-size: 2rem;
}

.map-box iframe {
  height: 300px;
}

}
/* Floating Buttons */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.call-btn {
  background: linear-gradient(135deg,#1976d2,#0d47a1);
}

.whatsapp-btn {
  background: #25d366;
}

.float-btn:hover {
  transform: scale(1.1);
}
