/* ===== MAX VALLEY MEDIA PLAYER - HOT RED | NAVY BLUE | BOTTLE GREEN ===== */
:root {
  --mv-hot-red: #E11D2E;
  --mv-hot-red-dark: #B91C2A;
  --mv-navy: #1A2A4F;
  --mv-navy-dark: #0F1A36;
  --mv-navy-light: #2D4A7C;
  --mv-bottle-green: #1A4D3E;
  --mv-bottle-green-dark: #0F382C;
  --mv-light-bg: #F5F7FB;
  --mv-card-bg: #FFFFFF;
  --mv-text-dark: #1A2A4F;
  --mv-text-muted: #4A5568;
  --mv-border: #E2E8F0;
  --mv-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --mv-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --mv-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --transition-smooth: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: linear-gradient(135deg, #F5F7FB 0%, #FFFFFF 100%);
  color: var(--mv-text-dark);
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 40%, rgba(26, 42, 79, 0.03) 2%, transparent 2.5%),
    radial-gradient(circle at 80% 70%, rgba(225, 29, 46, 0.02) 1.8%, transparent 2%),
    radial-gradient(circle at 40% 90%, rgba(26, 77, 62, 0.02) 2.2%, transparent 2.7%);
  background-size: 50px 50px, 60px 60px, 45px 45px;
  pointer-events: none;
  z-index: 0;
}

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

.elegant-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid #E2E8F0;
  border-top-color: var(--mv-hot-red);
  border-right-color: var(--mv-navy);
  border-bottom-color: var(--mv-bottle-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Navbar */
.navbar-elegant {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.5rem 2rem;
  border-bottom: 1px solid var(--mv-border);
  box-shadow: var(--mv-shadow-sm);
}

.navbar-nav .nav-link-elegant {
  color: var(--mv-text-dark);
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.6rem 1rem;
  transition: var(--transition-smooth);
  border-radius: 40px;
  font-size: 0.95rem;
}

.navbar-nav .nav-link-elegant:hover,
.navbar-nav .nav-link-elegant.active {
  color: var(--mv-hot-red);
  background: rgba(225, 29, 46, 0.08);
}

.btn-primary-elegant {
  background: linear-gradient(105deg, var(--mv-hot-red), var(--mv-hot-red-dark));
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-weight: 700;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(225, 29, 46, 0.25);
}

.btn-primary-elegant:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 29, 46, 0.3);
  background: var(--mv-hot-red-dark);
  color: white;
}

.btn-free-trial-royal {
  background: transparent;
  border: 2px solid var(--mv-navy);
  color: var(--mv-navy);
  padding: 0.45rem 1.2rem;
  border-radius: 40px;
  font-weight: 700;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-free-trial-royal:hover {
  background: var(--mv-navy);
  color: white;
  border-color: var(--mv-navy);
}

/* Hero Section */
.hero-elegant {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 4;
  padding: 4rem 2rem;
}

.hero-text-box {
  max-width: 700px;
  margin-left: 5%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 32px;
  border-left: 6px solid var(--mv-hot-red);
  box-shadow: var(--mv-shadow);
}

.hero-title-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(225, 29, 46, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--mv-hot-red);
}

.main-title-elegant {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--mv-hot-red);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.title-sub-elegant {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mv-navy);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-desc-elegant {
  font-size: 1rem;
  color: var(--mv-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Stats bar */
.stats-wrapper {
  background: white;
  padding: 1.5rem 0;
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

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

.stat-number-elegant {
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  color: var(--mv-hot-red);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mv-text-muted);
  font-weight: 500;
}

.whatsapp-stat a {
  color: #25D366;
  text-decoration: none;
}

/* Glass card */
.glass-card-elegant {
  background: white;
  border-radius: 28px;
  padding: 1.8rem;
  border: 1px solid var(--mv-border);
  box-shadow: var(--mv-shadow);
}

/* Apps Section */
.apps-section {
  padding: 4rem 0;
}

.section-header-elegant {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-elegant h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--mv-hot-red);
  letter-spacing: -0.01em;
}

.section-underline-elegant {
  width: 70px;
  height: 3px;
  background: var(--mv-hot-red);
  margin: 0.8rem auto 0;
  border-radius: 4px;
}

.apps-grid-container {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.apps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.app-card-elegant {
  background: white;
  border-radius: 24px;
  padding: 1.2rem;
  text-align: center;
  width: 250px;
  transition: var(--transition-smooth);
  border: 1px solid var(--mv-border);
  box-shadow: var(--mv-shadow-sm);
}

.app-card-elegant:hover {
  transform: translateY(-5px);
  border-color: var(--mv-hot-red);
  box-shadow: var(--mv-shadow-hover);
}

.app-icon-elegant {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.app-card-elegant h6 {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--mv-text-dark);
}

.app-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-app-elegant {
  background: #F1F5F9;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  color: var(--mv-text-dark);
  text-decoration: none;
  display: inline-block;
  margin: 0.2rem;
  transition: 0.2s;
  font-weight: 600;
}

.btn-app-elegant:hover {
  background: var(--mv-hot-red);
  color: white;
}

/* Pricing Cards - INCREASED SIZE */
.pricing-section {
  padding: 4rem 0;
  background: #F5F7FB;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-row-custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card-professional {
  background: white;
  border-radius: 32px;
  padding: 2.2rem 2rem;
  width: 320px;
  transition: var(--transition-smooth);
  border: 1px solid var(--mv-border);
  box-shadow: var(--mv-shadow);
  text-align: center;
}

.pricing-card-professional:hover {
  transform: translateY(-6px);
  border-color: var(--mv-navy);
  box-shadow: var(--mv-shadow-hover);
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--mv-hot-red);
}

.price-period {
  font-size: 0.9rem;
  color: var(--mv-text-muted);
}

.price-features-elegant {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0;
  text-align: left;
}

.price-features-elegant li {
  margin: 0.7rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mv-text-dark);
}

.price-features-elegant i {
  font-size: 0.9rem;
}

.price-features-elegant li i.fa-check-circle {
  color: var(--mv-bottle-green);
}

.btn-price-professional {
  background: linear-gradient(105deg, var(--mv-navy), var(--mv-navy-dark));
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  box-shadow: 0 2px 6px rgba(26, 42, 79, 0.2);
  font-size: 1rem;
}

.btn-price-professional:hover {
  background: var(--mv-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 42, 79, 0.25);
  color: white;
}

/* FAQ */
.faq-section-new {
  padding: 4rem 0;
  background: white;
}

.faq-container-vertical {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-new {
  background: #F5F7FB;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--mv-border);
}

.faq-question-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.8rem;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s;
  color: var(--mv-text-dark);
}

.faq-question-new:hover {
  background: rgba(225, 29, 46, 0.03);
}

.faq-answer-new {
  max-height: 0;
  padding: 0 1.8rem;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--mv-text-muted);
  font-size: 0.95rem;
}

.faq-item-new.active .faq-answer-new {
  max-height: 200px;
  padding: 0 1.8rem 1.2rem;
}

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

.faq-question-new i:first-child {
  margin-right: 12px;
  color: var(--mv-hot-red);
}

/* Features grid */
.features-section {
  padding: 4rem 0;
  background: #F5F7FB;
}

.feature-grid-elegant {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.feature-item-elegant {
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--mv-border);
  box-shadow: var(--mv-shadow);
  min-width: 130px;
  transition: 0.2s;
}

.feature-item-elegant:hover {
  transform: translateY(-5px);
  border-color: var(--mv-bottle-green);
  box-shadow: var(--mv-shadow-hover);
}

.feature-item-elegant img {
  width: 75px;
  height: 75px;
  margin-bottom: 0;
  filter: brightness(0.8);
}

.feature-name {
  display: none;
}

/* Footer - Navy Blue with White Text */
.footer-elegant {
  background: #0F1A36;
  padding: 3rem 0 1.5rem;
  color: #FFFFFF;
}

.footer-heading-elegant {
  color: white;
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 1.1rem;
}

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

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

.footer-links-elegant li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.2s;
  opacity: 0.85;
}

.footer-links-elegant li a:hover {
  color: var(--mv-hot-red);
  margin-left: 5px;
  opacity: 1;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1E2A4A;
  font-size: 0.8rem;
  color: #FFFFFF;
}

.footer-copyright .highlight-project {
  color: var(--mv-hot-red);
  font-weight: 700;
}

.footer-copyright a {
  color: var(--mv-navy-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-copyright a:hover {
  text-decoration: underline;
  color: var(--mv-hot-red);
}

.footer-app-box img {
  width: 250px;
  height: auto;
  max-width: 100%;
}

.whatsapp-float-elegant {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  padding: 10px 18px;
  border-radius: 40px;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
  font-size: 0.9rem;
}

.whatsapp-float-elegant:hover {
  transform: scale(1.03);
  background: #20b85f;
  color: white;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--mv-hot-red);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: 0.3s;
  text-decoration: none;
  z-index: 100;
}

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

.back-to-top-elegant:hover {
  background: var(--mv-hot-red-dark);
  color: white;
}

.text-muted-custom {
  color: var(--mv-text-muted);
}

.rounded-4 {
  border-radius: 24px;
}

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

  .hero-text-box {
    margin-left: 0;
    padding: 1.5rem;
  }

  .stats-grid {
    gap: 0.8rem;
  }

  .navbar-elegant {
    padding: 0.5rem 1rem;
  }

  .footer-app-box img {
    width: 200px;
  }

  .feature-item-elegant img {
    width: 55px;
    height: 55px;
  }

  .feature-item-elegant {
    min-width: 100px;
    padding: 1rem;
  }

  .pricing-card-professional {
    width: 280px;
    padding: 1.8rem 1.5rem;
  }

  .price-amount {
    font-size: 2.8rem;
  }
}


html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}