body { scroll-behavior: smooth; }
    header {
      background: #212529;
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }
    header img { max-width: 120px; margin-bottom: 20px; }
    section { padding: 60px 0; }
    .service-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      transition: transform 0.3s;
      text-align: center;
      background: #fff;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    footer {
      background: #212529;
      color: #fff;
      padding: 20px 0;
      text-align: center;
    }
    iframe {
      width: 100%;
      border: 0;
      height: 300px;
      border-radius: 10px;
    }


    .support-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 250px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.support-panel.active {
  transform: translateY(0);
}

.support-header {
  background: #075E54;
  color: white;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.support-options {
  padding: 10px;
}

.support-option {
  display: block;
  padding: 12px;
  margin: 8px 0;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}

.support-option:hover {
  transform: translateX(5px);
}

.whatsapp { background: #25D366; }
.phone { background: #4285F4; }
.email { background: #EA4335; }

/* Trigger Button */
.support-trigger {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #075E54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.support-trigger i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}