/* ========== TV HOUSE WOODY THEME ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f0e8;
  color: #2c2418;
  overflow-x: hidden;
}

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

.flix-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(139, 69, 19, 0.2);
  border-top: 4px solid #8B4513;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Navbar */
.navbar-flix {
  background: rgba(255, 248, 235, 0.98);
  backdrop-filter: blur(16px);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #d4c5b0;
  box-shadow: 0 2px 10px rgba(60, 40, 20, 0.05);
}

.navbar-brand-logo {
  height: 110px !important;
  width: auto !important;
  max-height: 120px !important;
}

.navbar-brand {
  padding: 0;
  margin-right: 1rem;
}

.nav-link-flix {
  color: #5a3e2b !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 1rem;
}

.nav-link-flix:hover,
.nav-link-flix.active {
  color: #8B4513 !important;
}

.btn-flix-primary {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.25);
}

.btn-flix-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.35);
  color: white;
}

.btn-flix-outline {
  background: transparent;
  border: 1.5px solid #8B4513;
  color: #8B4513;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.btn-flix-outline:hover {
  background: rgba(139, 69, 19, 0.08);
  color: #6B3410;
  border-color: #6B3410;
}

/* Hero Section - DARK WOODY BACKGROUND */
.hero-flix {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1410 0%, #2c2418 100%);
}

.soft-circle {
  position: absolute;
  background: radial-gradient(circle, rgba(139, 69, 19, 0.15) 0%, rgba(139, 69, 19, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 12s infinite ease-in-out;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

.floating-particle {
  position: absolute;
  background: rgba(139, 69, 19, 0.25);
  border-radius: 50%;
  filter: blur(2px);
  animation: particleFloat 8s infinite alternate;
  z-index: 1;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0.2;
  }

  100% {
    transform: translate(20px, -20px);
    opacity: 0.5;
  }
}

.hero-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero-badge-flix {
  background: rgba(139, 69, 19, 0.25);
  backdrop-filter: blur(4px);
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 0.95rem;
  color: #c4a265;
  margin-bottom: 1rem;
  border: 1px solid rgba(139, 69, 19, 0.4);
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.main-title-flix {
  font-size: 4.2rem;
  font-weight: 800;
  background: linear-gradient(120deg, #f5efe5 30%, #c4a265 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-description {
  color: #d4c5b0;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
  z-index: 3;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.btn-flix-primary-hero {
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  padding: 14px 36px;
  border-radius: 48px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-size: 1.05rem;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.btn-flix-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
}

.btn-hero-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 14px 36px;
  border-radius: 48px;
  color: #c4a265;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #c4a265;
  font-size: 1.05rem;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.btn-hero-white:hover {
  background: rgba(196, 162, 101, 0.2);
  color: #e8dcc8;
  transform: translateY(-3px);
}

/* SLOW SLIDING HERO IMAGE ANIMATION */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 3;
  animation: slowSlideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}

@keyframes slowSlideInRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-large {
  width: 120%;
  max-width: 750px;
  height: auto;
  border-radius: 40px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s ease, filter 0.5s ease;
  transform: scale(1);
  animation: gentleFloat 4s ease-in-out infinite;
}

.hero-image-large:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.5));
}

@keyframes gentleFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Text Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-flix .col-lg-6:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.hero-image-frame {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: center;
}

/* Stats - Light Woody */
.stats-grid-flix {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: white;
  border-radius: 60px;
  padding: 2rem 2.5rem;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  border: 1px solid #e0d4c2;
  box-shadow: 0 10px 30px rgba(60, 40, 20, 0.06);
}

.stat-item-flix {
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.stat-number-flix {
  font-size: 2.2rem;
  font-weight: 800;
  color: #8B4513;
  display: block;
}

.stat-item-flix div:last-child {
  color: #5a4a38;
  font-size: 1rem;
}

/* Cards - Light Woody */
.glass-card-flix {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid #e0d4c2;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(60, 40, 20, 0.04);
}

.glass-card-flix-light {
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(139, 69, 19, 0.2);
  box-shadow: 0 5px 15px rgba(60, 40, 20, 0.04);
}

.tv-img {
  max-height: 280px;
  object-fit: contain;
}

/* App Cards */
.apps-section {
  padding: 5rem 0;
  background: #faf5ec;
}

.app-card-flix {
  background: white;
  border-radius: 1.8rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #e0d4c2;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.03);
}

.app-card-flix:hover {
  transform: translateY(-8px);
  border-color: #8B4513;
  box-shadow: 0 25px 40px -12px rgba(139, 69, 19, 0.15);
}

.app-icon-circle-flix img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.app-card-flix h6 {
  color: #2c2418;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.btn-app-flix {
  background: rgba(139, 69, 19, 0.1);
  color: #8B4513;
  border: none;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 0.25rem;
}

.btn-app-flix:hover {
  background: #8B4513;
  color: white;
}

/* Pricing */
.pricing-section {
  background: white;
  padding: 5rem 0;
}

.pricing-card-flix {
  background: #faf5ec;
  border-radius: 2rem;
  padding: 2.2rem;
  transition: 0.3s;
  border: 1px solid #e0d4c2;
}

.pricing-card-flix:hover {
  border-color: #8B4513;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.08);
}

.price-amount-flix {
  font-size: 3.5rem;
  font-weight: 800;
  color: #8B4513;
}

.price-period {
  color: #5a4a38;
  font-size: 1rem;
}

.price-features {
  list-style: none;
  padding-left: 0;
}

.price-features li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed #e0d4c2;
  color: #5a4a38;
  font-size: 1rem;
}

/* SMALL STATS BAR - Compact Version */
.small-stats-bar {
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  margin: 1.5rem auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border: 1px solid #e0d4c2;
  box-shadow: 0 3px 10px rgba(60, 40, 20, 0.05);
}

.small-stats-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.small-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.small-stars i {
  font-size: 0.9rem;
  color: #f5b042;
}

.small-stars i.far {
  color: #d4c5b0;
}

.small-stats-text {
  font-size: 0.85rem;
  color: #5a4a38;
  font-weight: 500;
}

.small-stats-score {
  font-size: 1rem;
  font-weight: 700;
  color: #8B4513;
}

.small-stats-divider {
  width: 1px;
  height: 20px;
  background: #e0d4c2;
}

.small-stats-icon {
  color: #8B4513;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .small-stats-bar {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
  }

  .small-stats-divider {
    width: 80%;
    height: 1px;
  }
}

/* FAQ */
.faq-section-new {
  padding: 5rem 0;
  background: #faf5ec;
}

.faq-item-flix {
  background: white;
  border-radius: 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid #e0d4c2;
}

.faq-question-flix {
  padding: 1.5rem 2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2c2418;
  font-size: 1.1rem;
}

.faq-question-flix:hover {
  color: #8B4513;
}

.faq-answer-flix {
  padding: 0 2rem 1.5rem 2rem;
  display: none;
  color: #5a4a38;
  font-size: 1rem;
  line-height: 1.6;
}

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

/* Features */
.features-section {
  background: white;
  padding: 5rem 0;
}

.feature-icon {
  width: 100px;
  transition: 0.3s;
  filter: drop-shadow(0 2px 5px rgba(60, 40, 20, 0.08));
}

.feature-icon:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(139, 69, 19, 0.3));
}

.feature-item-flix {
  margin: 0 0.5rem;
}

/* Footer */
.footer-flix {
  background: linear-gradient(135deg, #1a1410 0%, #2c2418 100%);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid #4a3a2a;
}

.footer-flix h5 {
  color: #e8dcc8;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

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

.footer-links-flix li {
  margin-bottom: 0.8rem;
}

.footer-links-flix li a {
  color: #c4b8a8;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.2s;
}

.footer-links-flix li a:hover {
  color: #c4a265;
}

.footer-divider {
  border-color: #4a3a2a;
  margin: 2.5rem 0;
}

.copyright-mixed {
  color: #c4b8a8;
  font-size: 1.1rem;
}

.copyright-mixed p {
  font-size: 1.1rem;
}

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

/* #A0522D Color for project name and link */
.highlight-project,
.copyright-mixed a {
  color: #A0522D !important;
  font-weight: 700;
}

.copyright-mixed a:hover {
  color: #c4a265 !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 2.2rem;
  color: white;
  z-index: 99;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #8B4513;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  text-decoration: none;
  font-size: 1.2rem;
}

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

.back-to-top:hover {
  background: #6B3410;
  color: white;
}

/* Headers */
.apps-section h2,
.pricing-section h2,
.features-section h2,
.faq-section-new h2 {
  font-size: 3rem !important;
  margin-bottom: 1rem;
}

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

  .stats-grid-flix {
    margin-top: 20px;
    gap: 1rem;
  }

  .stat-item-flix {
    padding: 0.5rem 0.8rem;
  }

  .app-icon-circle-flix img {
    width: 60px;
    height: 60px;
  }

  .app-card-flix h6 {
    font-size: 1rem;
  }

  .feature-icon {
    width: 70px;
  }

  .apps-section h2,
  .pricing-section h2,
  .features-section h2,
  .faq-section-new h2 {
    font-size: 2.2rem !important;
  }

  .footer-flix h5 {
    font-size: 1.2rem;
  }

  .footer-links-flix li a {
    font-size: 0.95rem;
  }

  .copyright-mixed p {
    font-size: 0.9rem;
  }

  .navbar-brand-logo {
    height: 55px !important;
    max-height: 55px !important;
  }

  .hero-image-large {
    max-width: 100%;
  }

  @keyframes slowSlideInRight {
    from {
      opacity: 0;
      transform: translateX(0);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* Text colors */
.text-muted {
  color: #6b5a48 !important;
}

h2,
h3,
h4,
h5,
h6 {
  color: #2c2418;
}


html,
body {
  overflow-x: hidden;
}

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