@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Premium Elegant Palette */
  --navy-dark: #0B132B;
  --navy-light: #1C2541;
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --magenta-accent: #E91E63;
  --white: #FFFFFF;
  --gray-bg: #F8F9FA;
  --gray-text: #6C757D;
  --text-dark: #121212;

  --font-main: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--gray-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  border: 3px solid var(--navy-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

.text-gold {
  background: linear-gradient(to right, #F3E5AB, #D4AF37, #F3E5AB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shineGold 4s linear infinite;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

@keyframes shineGold {
  to {
    background-position: 200% center;
  }
}


/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
  transition-duration: 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  background: rgba(11, 19, 43, 0.95); /* navy-dark with opacity */
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 48px;
}

.nav-brand-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background: #B5952F;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), #B5952F);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: #060b19; /* Very dark rich blue */
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated Glowing Orbs (Glassmorphism Effects) */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  animation: floatOrb 15s ease-in-out infinite alternate;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(233, 30, 99, 0.1) 100%);
  top: -10%;
  right: -5%;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 19, 43, 0.8) 0%, rgba(57, 101, 255, 0.15) 100%);
  bottom: -20%;
  left: -10%;
  animation-delay: -5s;
}

.glow-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -50px) scale(1.1); }
  100% { transform: translate(-30px, 20px) scale(0.9); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-details {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.detail-icon {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.detail-text h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.detail-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.speaker-card-hero {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  max-width: 320px;
  transform: rotate(2deg) translateY(0);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(0deg) translateY(-15px); }
  100% { transform: rotate(2deg) translateY(0); }
}

.speaker-card-hero:hover {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.3);
}

.speaker-card-hero img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.speaker-card-info {
  text-align: center;
  padding: 16px 8px 8px;
}

.speaker-card-info h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.speaker-card-info p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.floating-badge {
  position: absolute;
  top: -45px;
  left: -40px;
  background: linear-gradient(135deg, var(--magenta-accent), #FF5252);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px rgba(233, 30, 99, 0.3);
  border: 4px solid var(--white);
  z-index: 10;
  transform: rotate(-10deg);
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: linear-gradient(180deg, #FDFDFD 0%, #F5F7FA 100%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-box {
  padding: 40px 24px;
  background: linear-gradient(145deg, #1C2541 0%, #0B132B 100%);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(11, 19, 43, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #F3E5AB, var(--gold-primary), #F3E5AB);
  opacity: 0;
  transition: 0.4s;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-box .icon-wrapper {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: 0.4s;
}

.stat-box:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--gold-primary), #B5952F);
  color: var(--navy-dark);
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.stat-box h3 {
  font-size: 1.3rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Features/Topics Section */
.section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #F8F9FA 50%, #F1F3F5 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .badge {
  background: rgba(11, 19, 43, 0.05);
  border-color: transparent;
  color: var(--navy-dark);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.topic-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9f4ea 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.topic-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.topic-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.topic-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Form Section */
.registration {
  background: linear-gradient(180deg, #F1F3F5 0%, #E9ECEF 100%);
  position: relative;
  overflow: hidden;
}

.registration::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(11, 19, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(255,255,255,0.4);

  overflow: visible;
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #152243 100%);
  padding: 40px;
  text-align: center;
  color: var(--white);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.form-header h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.form-body {
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy-dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Custom Select */
.custom-select-wrapper {
  position: relative;
  user-select: none;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.custom-select.open .custom-select__trigger, .custom-select__trigger:hover {
  background: var(--white);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.custom-select__trigger span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 19, 43, 0.1);
  background: var(--white);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-10px);
  margin-top: 8px;
  overflow: hidden;
}
.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-option {
  position: relative;
  display: block;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-dark);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.custom-option:last-of-type {
  border-bottom: none;
}
.custom-option:hover, .custom-option.selected {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
  color: var(--gold-primary);
  padding-left: 24px;
}
.custom-option.selected {
  font-weight: 700;
}
.arrow {
  position: relative;
  height: 10px;
  width: 10px;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.3s;
  background-color: var(--navy-dark);
}
.arrow::before {
  left: -3px;
  transform: rotate(-45deg);
}
.arrow::after {
  left: 3px;
  transform: rotate(45deg);
}
.custom-select.open .arrow::before {
  transform: rotate(45deg);
}
.custom-select.open .arrow::after {
  transform: rotate(-45deg);
}

select.form-control {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0,0,0,0.05);
}

.infaq-section {
  display: none;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
  border: 2px dashed var(--gold-primary);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}

.infaq-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.infaq-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.bank-details {
  background: var(--white);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bank-logo {
  font-weight: 800;
  color: #00A39D; /* BSI Color */
  font-size: 1.2rem;
}

.bank-text strong {
  font-size: 1.2rem;
  color: var(--navy-dark);
  display: block;
}

.file-upload {
  position: relative;
  display: block;
}

.file-upload input[type="file"] {
  width: 100%;
  padding: 12px;
  background: var(--white);
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 24px;
  text-align: center;
}

.footer-logo {
  filter: brightness(0) invert(1);
  height: 48px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}

.social-link:hover {
  background: var(--gold-primary);
  transform: translateY(-3px);
}

.social-link.fb-hover:hover { background: #1877F2; }
.social-link.ig-hover:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-link.yt-hover:hover { background: #FF0000; }
.social-link.tiktok-hover:hover { background: #000000; }
.social-link.tw-hover:hover { background: #000000; }
.social-link.wa-hover:hover { background: #25D366; }

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.85rem;
}

/* Alert */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.alert-danger {
  background: #FFF5F5;
  color: #E53E3E;
  border: 1px solid #FEB2B2;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    margin: 0 auto 40px;
  }

  .hero-details {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .detail-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .speaker-card-hero {
    transform: rotate(0);
  }

  .nav-brand-text {
    display: none !important;
  }
  .nav-brand {
    gap: 0;
  }
  .nav-brand img {
    max-width: 130px;
    height: auto;
  }
  .navbar .btn.btn-primary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-body {
    padding: 24px;
  }

  /* Bank Details Mobile Fix */
  .bank-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .bank-text strong {
    font-size: 1.1rem;
  }

  /* Mobile Speaker Card Badge Fix */
  .floating-badge {
    left: -10px;
    top: -20px;
    font-size: 0.9rem;
    padding: 8px 16px;
    transform: rotate(-5deg);
  }

  .speaker-card-hero {
    margin-top: 20px;
  }

  /* Mobile WA Button Size */
  .floating-wa {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}

.badge-limited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 82, 82, 0.1);
  color: #FF5252;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 82, 82, 0.3);
  margin-top: 15px;
  animation: pulse-limited 2s infinite;
}

@keyframes pulse-limited {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.5);
  color: white;
}
