/* ===== MONTO IPTV PLAYER - #008B8B TEAL THEME ===== */
:root {
  --monto-primary: #008B8B;
  --monto-primary-dark: #006666;
  --monto-primary-light: #20B2AA;
  --monto-secondary: #20B2AA;
  --monto-light-bg: #F8F9FA;
  --monto-card-bg: #FFFFFF;
  --monto-dark-text: #1E293B;
  --monto-muted-text: #64748B;
  --monto-border-light: #E2E8F0;
  --monto-gradient: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
  --monto-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
  --accent-primary: var(--monto-primary);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--monto-light-bg);
  color: var(--monto-dark-text);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.brand-font {
  font-family: 'Bree Serif', serif;
  letter-spacing: -0.02em;
}

#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: 50px;
  height: 50px;
  border: 4px solid rgba(0, 139, 139, 0.2);
  border-top: 4px solid var(--monto-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Navbar - Light Premium with Teal Accent */
.navbar-elegant {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.5rem 2rem;
  border-bottom: 1px solid var(--monto-border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.nav-link-elegant {
  color: var(--monto-dark-text) !important;
  font-weight: 500;
  margin: 0 0.2rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s;
  border-radius: 40px;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  background: rgba(0, 139, 139, 0.08);
  color: var(--monto-primary) !important;
}

.btn-blue,
.btn-outline-red {
  padding: 8px 22px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-blue {
  background: var(--monto-gradient);
  border: none;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 139, 139, 0.25);
}

.btn-blue:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  color: white;
}

.btn-outline-red {
  background: transparent;
  border: 1.5px solid var(--monto-primary);
  color: var(--monto-primary);
}

.btn-outline-red:hover {
  background: rgba(0, 139, 139, 0.05);
  color: var(--monto-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 18px;
  font-size: 0.85rem;
}

/* Hero Fullscreen - Light with Teal Gradient, NO OPACITY on hero image */
.hero-fullscreen {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #E6FFF8 0%, #FFFFFF 100%);
  overflow: hidden;
  padding: 3rem 1rem;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 48px;
  padding: 2rem;
}

.hero-title-wrapper {
  font-family: 'Bree Serif', serif;
  font-size: 1rem;
  letter-spacing: 5px;
  background: rgba(0, 139, 139, 0.1);
  display: inline-block;
  padding: 0.3rem 1.4rem;
  border-radius: 60px;
  color: var(--monto-primary);
  margin-bottom: 1.5rem;
}

.main-title-elegant {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #008B8B, #006666);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}

.title-sub-elegant {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--monto-dark-text);
}

.hero-desc-elegant {
  max-width: 700px;
  margin: 1.5rem auto;
  color: var(--monto-muted-text);
  font-size: 1.05rem;
}

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

.stats-modern {
  background: var(--monto-card-bg);
  border-radius: 60px;
  padding: 1rem 1.8rem;
  box-shadow: var(--monto-shadow);
  border: 1px solid var(--monto-border-light);
}

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

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

.stat-number-elegant {
  font-weight: 800;
  font-size: 1.7rem;
  display: block;
  color: var(--monto-primary);
}

.stat-number-elegant a {
  color: var(--monto-primary);
  text-decoration: none;
}

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

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--monto-border-light);
  margin: auto 0;
}

/* Glass Cards */
.glass-card-elegant {
  background: var(--monto-card-bg);
  border-radius: 36px;
  padding: 2rem;
  border: 1px solid var(--monto-border-light);
  box-shadow: var(--monto-shadow);
  transition: transform 0.25s;
}

.tv-img {
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
  border-radius: 32px;
  border: 1px solid var(--monto-border-light);
}

/* App Cards - INCREASED SIZE */
.app-card-elegant {
  background: var(--monto-card-bg);
  border-radius: 32px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid var(--monto-border-light);
  box-shadow: var(--monto-shadow);
}

.app-card-elegant:hover {
  transform: translateY(-8px);
  border-color: var(--monto-primary);
  box-shadow: 0 20px 35px -12px rgba(0, 139, 139, 0.2);
}

.app-icon-elegant {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

.app-card-elegant h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--monto-dark-text);
}

.btn-app-elegant {
  background: #F1F5F9;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--monto-dark-text);
  text-decoration: none;
  margin: 0 4px;
  display: inline-block;
  transition: 0.2s;
}

.btn-app-elegant:hover {
  background: var(--monto-primary);
  color: white;
}

/* Pricing Cards */
.pricing-card-professional {
  background: var(--monto-card-bg);
  border-radius: 38px;
  padding: 2rem 1.5rem;
  transition: all 0.25s;
  border: 1px solid var(--monto-border-light);
  box-shadow: var(--monto-shadow);
  height: 100%;
}

.pricing-card-professional:hover {
  border-color: var(--monto-primary);
  transform: translateY(-4px);
}

.price-amount {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--monto-primary);
}

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

.price-features-elegant li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--monto-dark-text);
}

/* FAQ */
.faq-item-new {
  background: var(--monto-card-bg);
  border-radius: 24px;
  margin-bottom: 1rem;
  padding: 0.4rem 1.5rem;
  border-left: 4px solid var(--monto-primary);
  box-shadow: var(--monto-shadow);
}

.faq-question-new {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
  padding: 0.8rem 0;
  color: var(--monto-dark-text);
  font-size: 1rem;
}

.faq-question-new span:first-child {
  color: var(--monto-primary);
}

.faq-answer-new {
  display: none;
  padding-bottom: 1rem;
  color: var(--monto-muted-text);
  font-size: 0.95rem;
}

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

/* Footer - TEAL THEME WITH INCREASED TEXT SIZE, NO BORDER ON FOOTER IMAGE */
.footer-elegant {
  background: #008B8B;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
}

.footer-heading-elegant {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-family: 'Bree Serif', serif;
  font-size: 1.2rem;
}

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

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

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

.footer-links-elegant li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

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

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

/* Footer image - NO BORDER */
.footer-app-box img {
  border: none !important;
  box-shadow: none;
}

/* Highlight style for project name in copyright */
.copyright-highlight {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-float-elegant {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: var(--monto-primary);
  width: 44px;
  height: 44px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

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

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

  .hero-title-wrapper {
    font-size: 0.75rem;
  }

  .stats-grid .stat-divider {
    display: none;
  }

  .stat-card {
    flex: 1 0 40%;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .app-icon-elegant {
    width: 55px;
    height: 55px;
  }

  .app-card-elegant h6 {
    font-size: 0.95rem;
  }

  .btn-app-elegant {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .footer-heading-elegant {
    font-size: 1rem;
  }

  .footer-links-elegant li a {
    font-size: 0.85rem;
  }

  .footer-copyright p {
    font-size: 0.8rem;
  }
}

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

.btn-red {
  background: var(--monto-gradient);
  border-radius: 40px;
  padding: 8px 26px;
  color: white;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-red:hover {
  color: white;
  opacity: 0.95;
}

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

.rounded-4 {
  border-radius: 1rem;
}

.highlight-link:hover {
  color: var(--monto-primary) !important;
}

html,
body {
  overflow-x: hidden;
}

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