/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f7fb;
  color: #222;
}

h2 {
  text-align: center;
  margin-top: 20px;
  color: #003366;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-card,
.map-card {
  flex: 1 1 400px;
  min-height: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  color: #003366;
  margin-top: 0;
}

.contact-card p {
  margin: 10px 0;
  font-size: 0.95rem;
}

.contact-card a {
  color: #0056b3;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.map-card iframe {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

/* Floating Action Buttons */
.float-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn.email { background: #f39c12; bottom: 140px; }
.float-btn.call { background: #0d47a1; bottom: 80px; }
.float-btn.whatsapp { background: #25d366; bottom: 20px; }

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card,
  .map-card {
    width: 100%;
    min-height: 300px;
  }
}
