:root {
  --primary: #fbbf24; /* yellow-400 */
  --primary-glow: rgba(251, 191, 36, 0.15);
  --secondary: #10b981; /* green-500 */
  --bg-dark: #020203;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-white: rgba(255, 255, 255, 0.06);
  --text-muted: #888888;
}

* {
  box-sizing: border-box;
  user-select: none;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: white;
  line-height: 1.6;
}

section {
  position: relative;
  width: 100%;
  clear: both;
  z-index: 1;
}

/* Premium Background Blobs */
.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  max-width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.title-font {
  font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.85)),
    url('https://images.pexels.com/photos/9875418/pexels-photo-9875418.jpeg') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero-bg {
    background-attachment: scroll;
    background-position: center 20%;
    min-height: 80vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border-white);
  transition: border-color 0.3s ease;
}

.glass:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.gold-text {
  background: linear-gradient(135deg, #fff 0%, #fbbf24 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(250, 204, 21, 0.4);
  box-shadow: 0 0 50px rgba(250, 204, 21, 0.1);
}

.glow {
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.25);
  transition: 0.3s;
}

.glow:hover {
  box-shadow: 0 0 60px rgba(250, 204, 21, 0.4);
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.8s;
}

.shine:hover::before {
  left: 100%;
}

.blur-ball {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(250, 204, 21, 0.08);
  filter: blur(120px);
  border-radius: 9999px;
  z-index: 0;
  pointer-events: none;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}


