/* KING 4K OTT PLAYER - LIGHT THEME (Royal Gold & Light Background) */
:root {
  --king-gold: #D4AF37;
  --king-gold-dark: #B8960C;
  --king-glow: rgba(212, 175, 55, 0.2);
  --king-light-bg: #F8F9FC;
  --king-white: #FFFFFF;
  --king-soft-gray: #F0F2F5;
  --king-card-bg: #FFFFFF;
  --king-dark-text: #1A1A2E;
  --king-muted-text: #555555;
  --king-border: #E8E8E8;
  --king-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  --section-gap: 80px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Elegant 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: 55px;
  height: 55px;
  border: 4px solid rgba(212, 175, 55, 0.2);
  border-top: 4px solid var(--king-gold);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

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

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

/* Navbar - Light Theme */
.navbar-elegant {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.3rem 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-link-elegant {
  color: #333333 !important;
  font-weight: 600;
  margin: 0 0.25rem;
  padding: 0.75rem 1rem !important;
  transition: all 0.25s;
  border-radius: 40px;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  color: var(--king-gold-dark) !important;
  background: rgba(212, 175, 55, 0.1);
}

/* Buttons - Royal Gold */
.btn-primary-custom {
  background: var(--king-gradient);
  color: #FFFFFF !important;
  font-weight: 800;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #E6C84A 0%, #C9A03D 100%);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  color: #FFFFFF;
}

.btn-outline-cyan {
  background: transparent;
  border: 2px solid var(--king-gold);
  color: var(--king-gold-dark);
  font-weight: 700;
  padding: 8px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-cyan:hover {
  background: var(--king-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Hero Section - Full Size Image, No Background Box */
.hero-elegant {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

.hero-title-wrapper {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 8px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--king-gold);
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.main-title-elegant {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 20%, #D4AF37 60%, #FFC107 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

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

.hero-desc-elegant {
  max-width: 700px;
  margin: 20px auto;
  color: #F0F0F0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
}

/* Stats cards - Light Glass */
.stats-wrapper {
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.stats-modern {
  background: var(--king-white);
  border-radius: 60px;
  padding: 1.5rem 2rem;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

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

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

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

/* Glass Card - Light */
.glass-card-elegant {
  background: var(--king-white);
  border-radius: 36px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
}

/* App Cards */
.app-card-elegant {
  background: var(--king-white);
  border-radius: 32px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.app-card-elegant:hover {
  transform: translateY(-8px);
  border-color: var(--king-gold);
  box-shadow: 0 20px 30px -10px rgba(212, 175, 55, 0.2);
}

.app-icon-elegant {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

.btn-app-elegant {
  background: #F0F2F5;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--king-gold-dark);
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  margin: 4px;
}

.btn-app-elegant:hover {
  background: var(--king-gold);
  color: #FFFFFF;
}

/* Pricing Cards - Systematically Organized */
.pricing-section {
  padding: 60px 0;
  background: var(--king-light-bg);
}

.pricing-card-professional {
  background: var(--king-white);
  border-radius: 28px;
  padding: 2rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.25);
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card-professional:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
  border-color: var(--king-gold);
}

.price-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--king-gold-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--king-muted-text);
  margin-top: 5px;
}

.price-features-elegant {
  text-align: left;
  margin: 1.5rem 0;
  flex-grow: 1;
}

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

.price-features-elegant li i {
  color: var(--king-gold);
  width: 20px;
  font-size: 1rem;
}

.pricing-card-professional .btn-primary-custom {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* FAQ */
.faq-item-new {
  background: var(--king-white);
  margin-bottom: 16px;
  border-radius: 28px;
  border-left: 4px solid var(--king-gold);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.faq-answer-new {
  max-height: 0;
  padding: 0 1.8rem;
  overflow: hidden;
  transition: 0.3s ease;
  color: var(--king-muted-text);
}

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

/* Feature icons */
.feature-item-elegant img {
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.feature-item-elegant:hover img {
  transform: scale(1.05);
}

/* Footer - FULL GOLDEN BACKGROUND #B8960C - NO ARROWS */
.footer-elegant {
  background: #B8960C !important;
  border-top: 3px solid #D4AF37 !important;
  padding: 60px 0 30px !important;
  color: #1A1A2E !important;
}

.footer-heading-elegant {
  color: #1A1A2E !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  font-size: 1.3rem !important;
}

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

.footer-links-elegant li a,
.footer-links-elegant li i {
  color: #1A1A2E !important;
  text-decoration: none !important;
  transition: 0.2s !important;
  margin-bottom: 10px !important;
  display: inline-block !important;
  font-weight: 500 !important;
}

/* Remove arrow icons from footer links */
.footer-links-elegant li a i.fa-angle-right,
.footer-links-elegant li i.fa-angle-right {
  display: none !important;
}

.footer-links-elegant li a:hover {
  color: #FFFFFF !important;
  transform: translateX(5px) !important;
}

.footer-copyright {
  margin-top: 40px !important;
  padding-top: 25px !important;
  border-top: 1px solid rgba(26, 26, 46, 0.2) !important;
  color: #1A1A2E !important;
}

.footer-copyright a {
  color: #1A1A2E !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.footer-copyright a:hover {
  text-decoration: underline !important;
  color: #FFFFFF !important;
}

.footer-copyright p {
  color: #1A1A2E !important;
}

.footer-copyright p span {
  color: #1A1A2E !important;
  font-weight: 800 !important;
}

.whatsapp-float-elegant {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-elegant {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #B8960C;
  color: #1A1A2E;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

  .hero-content {
    padding: 60px 20px;
  }

  .pricing-card-professional {
    margin-bottom: 20px;
  }
}

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

html,
body {
  overflow-x: hidden;
}

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