/* ========== MULTIPLAY THEME - CLEAN LIGHT BACKGROUND ========== */
:root {
  --mp-pink: #EC4899;
  --mp-pink-dark: #DB2777;
  --mp-yellow: #EAB308;
  --mp-yellow-light: #FEF08A;
  --mp-green: #22C55E;
  --mp-green-dark: #16A34A;
  --mp-white: #FFFFFF;
  --mp-gray-light: #F8FAFC;
  --mp-gray: #F1F5F9;
  --mp-text-dark: #1E293B;
  --mp-text-muted: #475569;
  --mp-border: #E2E8F0;
  --mp-card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --section-gap: 5rem;
}

body {
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: var(--mp-text-dark);
  overflow-x: hidden;
}

/* Modern Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.elegant-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(236, 72, 153, 0.2);
  border-top-color: #EC4899;
  border-right-color: #EAB308;
  border-bottom-color: #22C55E;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Lightning Overlay - Subtle version */
.lightning-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(234, 179, 8, 0.05) 100%);
  opacity: 0;
  z-index: 9998;
  transition: opacity 0.08s ease;
}

.lightning-overlay.active {
  opacity: 1;
  background: radial-gradient(circle, rgba(255, 245, 200, 0.7) 0%, rgba(236, 72, 153, 0.2) 100%);
  transition: opacity 0.05s ease;
}

.lightning-bolt {
  position: fixed;
  width: 80px;
  height: 180px;
  background: linear-gradient(45deg, #EAB308, #EC4899);
  clip-path: polygon(50% 0%, 40% 30%, 55% 35%, 45% 70%, 70% 40%, 55% 45%, 65% 100%, 35% 70%, 50% 60%, 30% 30%);
  filter: blur(2px) drop-shadow(0 0 8px #EAB308);
  opacity: 0;
  z-index: 9999;
  pointer-events: none;
}

/* ========== NAVBAR STYLES - COMPLETELY RESTRUCTURED ========== */
/* Base navbar styles (shared between mobile/desktop) */
.navbar-elegant {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(236, 72, 153, 0.15);
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  width: 100%;
  padding: 0.5rem 2rem;
}

/* Hide default Bootstrap toggler */
.navbar-toggler {
  display: none;
}

/* Custom Hamburger Menu Button */
.navbar-toggler-custom {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-toggler-custom:focus {
  outline: none;
}

.navbar-toggler-custom .hamburger-icon {
  width: 28px;
  height: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-custom .hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #EC4899, #EAB308);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggler-custom[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggler-custom[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-brand img {
  filter: drop-shadow(0 2px 4px rgba(236, 72, 153, 0.15));
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.02);
}

.nav-link-elegant {
  color: var(--mp-text-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.2s;
  position: relative;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  color: #EC4899 !important;
}

.nav-link-elegant.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #EC4899, #EAB308, #22C55E);
  border-radius: 2px;
}

/* Desktop action buttons container - separate from menu */
.nav-buttons {
  display: none;
}

/* ===== MOBILE & TABLET STYLES (max-width: 991px) - ORIGINAL LAYOUT UNCHANGED ===== */
@media (max-width: 991.98px) {
  .navbar-toggler-custom {
    display: flex;
    margin-left: auto;
  }

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

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(236, 72, 153, 0.15);
    border-bottom: 1px solid rgba(236, 72, 153, 0.15);
    z-index: 9999;
    padding: 1rem 1.5rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .navbar-collapse:not(.show) {
    display: none !important;
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .navbar-nav {
    flex-direction: column;
    margin: 0;
  }

  .nav-link-elegant {
    padding: 0.8rem 0;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    display: block;
  }

  .navbar-nav .nav-link-elegant:last-child {
    border-bottom: none;
  }

  /* Mobile buttons inside collapse (original behavior) */
  .navbar-collapse .nav-buttons-mobile {
    display: flex !important;
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .nav-buttons-mobile .btn-primary-custom,
  .nav-buttons-mobile .btn-outline-cyan {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Hide desktop nav-buttons on mobile */
  .nav-buttons {
    display: none !important;
  }
}

/* ===== DESKTOP STYLES (min-width: 992px) - 3-SECTION LAYOUT ===== */
@media (min-width: 992px) {
  .navbar-toggler-custom {
    display: none !important;
  }

  /* Main navbar container - 3 separate sections */
  .navbar-elegant .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
  }

  /* Left section - Logo stays at left */
  .navbar-brand {
    flex-shrink: 0;
  }

  /* Center section - Navigation menu */
  .navbar-collapse {
    position: static !important;
    display: flex !important;
    flex: 1;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0;
  }

  .navbar-nav {
    flex-direction: row;
    margin: 0;
    padding: 0;
  }

  /* Right section - Buttons separate from menu */
  .nav-buttons {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    margin-left: auto;
  }

  /* Hide mobile buttons on desktop */
  .nav-buttons-mobile {
    display: none !important;
  }

  .navbar-collapse .nav-buttons-mobile {
    display: none !important;
  }

  /* Ensure proper button styling */
  .nav-buttons .btn-primary-custom,
  .nav-buttons .btn-outline-cyan {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Prevent nav items from wrapping */
  .navbar-nav .nav-link-elegant {
    white-space: nowrap;
  }
}

/* Button Styles - Preserved exactly as original */
.btn-primary-custom {
  background: linear-gradient(135deg, #EC4899, #F97316);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(236, 72, 153, 0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(236, 72, 153, 0.35);
  background: linear-gradient(135deg, #F43F5E, #FBBF24);
  color: white;
}

.btn-outline-cyan {
  background: transparent;
  border: 1.5px solid #EC4899;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  color: #EC4899;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-cyan:hover {
  background: rgba(236, 72, 153, 0.08);
  border-color: #EAB308;
  color: #EAB308;
  transform: translateY(-2px);
}

/* Hero Section - Clean with visible image, NO TEXT BG */
.hero-elegant {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  background: #FFFFFF;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.hero-title-wrapper {
  background: linear-gradient(135deg, #EC4899, #FBBF24);
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.main-title-elegant {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, #FDE047, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-sub-elegant {
  font-size: 1.6rem;
  color: #FDE047;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-desc-elegant {
  font-size: 1.15rem;
  color: #FFFFFF;
  max-width: 650px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

/* Stats Cards */
.stats-wrapper {
  margin-top: -2rem;
  position: relative;
  z-index: 5;
}

.stats-modern {
  background: #FFFFFF;
  border-radius: 60px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(236, 72, 153, 0.15);
  box-shadow: var(--mp-card-shadow);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

.stat-card {
  text-align: center;
  padding: 0.5rem;
}

.stat-number-elegant {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #EC4899, #EAB308);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.stat-label {
  color: var(--mp-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(236, 72, 153, 0.2);
}

.whatsapp-stat a {
  color: #25D366;
  text-decoration: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Glass Card */
.glass-card-elegant {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(236, 72, 153, 0.15);
  transition: all 0.3s;
  box-shadow: var(--mp-card-shadow);
}

.glass-card-elegant:hover {
  border-color: #EC4899;
  transform: translateY(-4px);
}

/* App Cards */
.app-card-elegant {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 1.5rem 0.8rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid #E2E8F0;
  box-shadow: var(--mp-card-shadow);
}

.app-card-elegant:hover {
  border-color: #EC4899;
  transform: translateY(-5px);
  background: #FFFFFF;
  box-shadow: 0 15px 30px -12px rgba(236, 72, 153, 0.15);
}

.app-icon-elegant {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.app-card-elegant h6 {
  color: var(--mp-text-dark);
}

.btn-app-elegant {
  background: #F1F5F9;
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  font-size: 0.7rem;
  color: #EC4899;
  text-decoration: none;
  margin: 0.2rem;
  display: inline-block;
}

.btn-app-elegant:hover {
  background: #EC4899;
  color: white;
}

/* Pricing Cards */
.pricing-card-professional {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s;
  box-shadow: var(--mp-card-shadow);
}

.pricing-card-professional:hover {
  border-color: #22C55E;
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(34, 197, 94, 0.15);
}

.price-header {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #EC4899, #EAB308);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-period {
  color: var(--mp-text-muted);
}

.price-features-elegant li {
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mp-text-dark);
}

.price-features-elegant li i {
  color: #22C55E;
  font-size: 1rem;
}

/* FAQ */
.faq-item-new {
  background: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid #E2E8F0;
  box-shadow: var(--mp-card-shadow);
}

.faq-question-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--mp-text-dark);
}

.faq-answer-new {
  padding: 0 1.5rem 1.2rem 1.5rem;
  display: none;
  color: var(--mp-text-muted);
}

.faq-item-new.active .faq-answer-new {
  display: block;
}

.faq-item-new.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Footer - Pink & Yellow Theme */
.footer-elegant {
  background: linear-gradient(135deg, #EC4899 0%, #FBBF24 100%);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.03);
}

.footer-heading-elegant {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-links-elegant {
  list-style: none;
  padding-left: 0;
}

.footer-links-elegant li {
  margin-bottom: 0.6rem;
}

.footer-links-elegant a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: 0.2s;
}

.footer-links-elegant a:hover {
  color: #FFFFFF;
  padding-left: 4px;
  text-decoration: underline;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copyright a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #EC4899;
  width: 44px;
  height: 44px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  opacity: 0;
  transition: 0.3s;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-to-top-elegant.visible {
  opacity: 1;
}

.whatsapp-float-elegant {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .main-title-elegant {
    font-size: 2.8rem;
  }

  .stats-modern {
    border-radius: 32px;
  }

  .stat-divider {
    display: none;
  }

  .hero-content {
    padding: 1rem;
  }

  .title-sub-elegant {
    font-size: 1.2rem;
  }
}

.text-muted-custom {
  color: var(--mp-text-muted) !important;
}

.section-header-elegant h2 {
  color: var(--mp-text-dark) !important;
}

.feature-item-elegant img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}