/* SKY PLAY PLUS THEME - BEAUTIFUL SKY COLOR THEME */

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

body {
  background: linear-gradient(135deg, #e8f4fd 0%, #d4eaf7 50%, #c5e0f0 100%);
  color: #1a3a4f;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Navbar */
.container-fluid.sticky-top {
  padding: 0 !important;
  margin: 0 !important;
  top: 0;
  position: sticky;
}

.navbar-flix {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #4aa3d4;
  box-shadow: 0 4px 20px rgba(74, 163, 212, 0.1);
  padding: 0.5rem 1rem;
  width: 100%;
}

.navbar-brand-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.nav-link-flix {
  color: #1a3a4f !important;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: all 0.3s;
  font-size: 1rem;
  padding: 0.5rem 0.8rem;
}

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

.nav-link-flix.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.8rem;
  width: calc(100% - 1.6rem);
  height: 3px;
  background: #4aa3d4;
  border-radius: 3px;
}

.btn-flix-primary {
  background: linear-gradient(95deg, #4aa3d4, #2c7ab0);
  border: none;
  color: #ffffff;
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(74, 163, 212, 0.3);
}

.btn-flix-primary:hover {
  background: linear-gradient(95deg, #5db8e8, #4aa3d4);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-flix-outline {
  background: transparent;
  border: 2px solid #4aa3d4;
  color: #4aa3d4;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-flix-outline:hover {
  background: #4aa3d4;
  color: #ffffff;
  border-color: #4aa3d4;
  transform: translateY(-2px);
}

/* Hero section */
.hero-flix {
  background: linear-gradient(135deg, #cde6f5 0%, #b5d8ef 50%, #a0cbe8 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 8rem 0;
}

.hero-badge-flix {
  background: rgba(74, 163, 212, 0.15);
  color: #2c7ab0;
  border: 1px solid rgba(74, 163, 212, 0.4);
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
}

.main-title-flix {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1a3a4f, #4aa3d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: #4aa3d4 !important;
  font-weight: 600;
}

.hero-description {
  color: #1a4a6a;
  font-size: 1.1rem;
}

/* LARGER HERO IMAGE */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-large {
  max-width: 100%;
  height: auto;
  width: 750px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.2));
  animation: floatImage 4s ease-in-out infinite;
  border-radius: 70px 70px 70px 25px;
  background: linear-gradient(135deg, #ffffff, #e8f4fd);
  padding: 20px;
  transition: all 0.4s ease;
}

.hero-image-large:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.25));
}

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

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

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

/* Decorative glow behind hero image */
.hero-image-frame {
  position: relative;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #4aa3d4, #2c7ab0, #6bc6f0);
  border-radius: 85px 85px 85px 35px;
  z-index: -1;
  opacity: 0.4;
  filter: blur(15px);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.2;
    transform: scale(0.98);
  }

  100% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

.soft-circle {
  position: absolute;
  background: radial-gradient(circle, rgba(74, 163, 212, 0.12) 0%, rgba(74, 163, 212, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 8s infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }

  100% {
    transform: translateY(-25px) scale(1.05);
    opacity: 0.6;
  }
}

.floating-particle {
  position: absolute;
  background: rgba(74, 163, 212, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle 6s infinite alternate;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0px);
    opacity: 0.2;
  }

  100% {
    transform: translateY(-40px);
    opacity: 0.5;
  }
}

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

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-wave svg path {
  fill: #e8f4fd;
}

/* Stats block */
.stats-grid-flix {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(74, 163, 212, 0.4);
  box-shadow: 0 10px 30px rgba(74, 163, 212, 0.1);
}

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

.stat-number-flix {
  font-size: 1.8rem;
  font-weight: 800;
  color: #4aa3d4;
  display: block;
}

.stat-number-flix a {
  color: #4aa3d4 !important;
  text-decoration: none;
}

.stat-item-flix div:last-child {
  color: #1a3a4f;
  font-weight: 500;
}

/* Glass cards */
.glass-card-flix,
.glass-card-flix-light {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 1.8rem;
  border: 1px solid rgba(74, 163, 212, 0.35);
  transition: transform 0.3s;
  box-shadow: 0 8px 25px rgba(74, 163, 212, 0.08);
}

.glass-card-flix:hover,
.glass-card-flix-light:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 163, 212, 0.7);
}

/* App cards */
.apps-section {
  background: linear-gradient(145deg, #ffffff, #f0f8fe);
  padding: 5rem 0;
}

.app-card-flix {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 1.8rem;
  padding: 1.8rem;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(74, 163, 212, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.app-card-flix:hover {
  border-color: #4aa3d4;
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(74, 163, 212, 0.15);
}

.app-card-flix h6 {
  color: #1a3a4f;
  font-weight: 700;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.app-icon-circle-flix img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: linear-gradient(135deg, #e6f3fa, #d4eaf5);
  border-radius: 50%;
  padding: 18px;
  transition: transform 0.3s ease;
}

.app-icon-circle-flix img:hover {
  transform: scale(1.05);
}

.btn-app-flix {
  background: #4aa3d4;
  color: #ffffff;
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0 5px;
  display: inline-block;
}

.btn-app-flix:hover {
  background: #2c7ab0;
  color: #ffffff;
}

/* Pricing section */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eef6fc, #e0eff8);
}

.pricing-card-flix {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(74, 163, 212, 0.35);
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(74, 163, 212, 0.08);
}

.pricing-card-flix:hover {
  border-color: #4aa3d4;
  transform: scale(1.02);
}

.price-amount-flix {
  font-size: 3rem;
  font-weight: 800;
  color: #4aa3d4;
}

.price-period {
  color: #4a6a8a;
}

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

.price-features li {
  padding: 0.4rem 0;
  color: #1a4a6a;
}

.price-features li::before {
  content: "✓";
  color: #4aa3d4;
  margin-right: 10px;
  font-weight: bold;
}

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

.faq-item-flix {
  background: rgba(248, 252, 255, 0.98);
  margin-bottom: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(74, 163, 212, 0.25);
}

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

.faq-answer-flix {
  padding: 0 1.5rem 1.2rem;
  display: none;
  color: #4a6a8a;
}

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

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

/* Features section */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eef6fc, #e4f0f8);
}

.feature-item-flix {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 2rem;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(74, 163, 212, 0.08);
}

.feature-item-flix:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 163, 212, 0.15);
}

.feature-icon {
  width: 110px;
  height: auto;
  transition: transform 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.05);
}

/* Footer */
.footer-flix {
  background: #0f2c3f;
  padding: 3.5rem 0 2rem;
  border-top: 3px solid #4aa3d4;
  color: #c8e0f0;
}

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

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

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

.footer-links-flix li a {
  color: #c8e0f0;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
}

.footer-links-flix li a:hover {
  color: #4aa3d4;
  padding-left: 5px;
}

.footer-divider {
  background-color: rgba(74, 163, 212, 0.3);
  margin: 2rem 0;
}

.copyright-mixed {
  color: #c8e0f0;
  font-size: 1rem;
}

.copyright-mixed a {
  color: #4aa3d4;
  text-decoration: none;
}

.highlight-project {
  color: #4aa3d4;
  font-weight: 700;
}

/* Floating buttons */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: 0.2s;
  text-decoration: none;
}

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

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #4aa3d4;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
  background: #2c7ab0;
  color: #ffffff;
}

.flix-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.4s ease;
}

.text-muted {
  color: #5a7a9a !important;
}

h2,
h3,
h4,
h5,
h6 {
  color: #1a3a4f;
}

.tv-img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.img-fluid.rounded-4 {
  border-radius: 1.5rem;
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-image-large {
    width: 600px;
  }

  .navbar-nav {
    margin: 1rem 0;
  }

  .nav-link-flix {
    padding: 0.5rem 0;
  }
}

@media (max-width: 992px) {
  .hero-image-large {
    width: 500px;
  }

  .main-title-flix {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-image-large {
    width: 380px;
    padding: 12px;
  }

  .main-title-flix {
    font-size: 2.2rem;
  }

  .navbar-brand-logo {
    height: 65px;
  }

  .stats-grid-flix {
    margin-top: 0;
    border-radius: 2rem;
  }

  .feature-icon {
    width: 75px;
  }

  .app-icon-circle-flix img {
    width: 70px;
    height: 70px;
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .hero-image-large {
    width: 300px;
  }
}

html,
body {
  overflow-x: hidden;
}

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