body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(8,60,25,.9), rgba(8,60,25,.9)),
              url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') center/cover no-repeat;
  color: white;
}

.gold {
  color: #d4af37;
}

.section-title {
  font-weight: 800;
}

.glass {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: 15px;
}

.icon-card {
  border-left: 5px solid #198754;
  background: #fff;
  border-radius: 12px;
}

.cta-bar {
  background: linear-gradient(90deg,#198754,#0d6efd);
}

.container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.transform-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero h4 {
    font-size: 1.2rem;
  }
  .glass {
    font-size: 0.9rem;
    padding: 1rem !important;
  }
}

.animate-slide {
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
  from { opacity: 0; transform: translateY(20px); }
}

    .floating-buttons {
      position: fixed;
      bottom: 80px;
      right: 20px;
      z-index: 1050;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }

    .floating-btn.whatsapp {
      background-color: #25D366;
    }

    .floating-btn.inquire {
      background-color: #ffc107;
      color: black;
    }

    .floating-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .floating-btn svg {
      width: 30px;
      height: 30px;
    }