/* ==========================================================================
   1. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  background-color: #00a3a3;
  min-height: 100vh;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-size: cover;
  background-position: top;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. TYPOGRAPHY (TITLES)
   ========================================================================== */
h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Alfa Slab One", serif;
  font-size: 2rem; /* Desktop Default */
  font-weight: 500;
  font-style: normal;
  color: #0d3627;
}

h3{
  text-align: center;
  font-family: "Saira Stencil One", sans-serif;
  font-style: normal;
  font-size: 1.2em; /* Desktop Default */
  font-weight: 700;
  color: #ffd700;
  background: #1a1f2e;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #333;
}


span {
  font-family: "Saira Stencil One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ==========================================================================
   3. NAVBAR
   ========================================================================== */
header {
  width: 100%;
  position: fixed;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: sticky;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  max-width: 1600px;
}

/* logo */
.navbar-logo img {
  width: 130px;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* main menu */
.navbar-container .navbar-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-container .navbar-menu li a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-container .navbar-menu li a:hover,
.navbar-container .navbar-menu li a.active {
  color: #152530;
  background: rgba(188, 212, 229, 0.8);
  border: 2px solid white;
}

/* hamburger */
.navbar-toggle {
  display: none;
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: white;
  transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  display: flex;
  flex-direction: column; /* Mobile First: Stacked */
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  border-radius: 24px;
  box-sizing: border-box;
}

.hero-content {
  flex: 1;
  text-align: center;
  padding: 0 10px;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #0d3627;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

.hero-logo-span {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
}

.hero-refund-text {
  margin-top: 1.5rem;
  color: #000000;
}

.hero_btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 30px;
  background: gold;
  color: rgb(21, 51, 200);
  font-weight: bold;
  transition: 0.3s;
}

.hero_btn:hover {
   background: #00bcd4;
}

.hero-swiper-container {
  flex: 1;
  width: 100%;
}

.hero-swiper {
  width: 100%;
  overflow: visible;
  aspect-ratio: 4/3; /* Reserves height based on 75% slide width (1:1 image) */
}

.hero-swiper .swiper-wrapper {
  display: flex; /* Prevents vertical stacking before JS loads */
}

.hero-swiper .swiper-slide {
  width: 75%;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-swiper .swiper-slide-prev,
.hero-swiper .swiper-slide-next {
  opacity: 0.7;
  transform: scale(0.9);
}

.hero-swiper .swiper-slide-active {
  transform: scale(1);
}

.hero-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* ==========================================================================
   5. STEPS / WHY CHOOSE US
   ========================================================================== */
.steps {
  text-align: center;
  padding: 60px 20px;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  border-radius: 15px;
  box-shadow: 0 4px 10px yellow;
  flex: 1 1 280px;
  max-width: 350px;
  width: 100%;
  padding: 30px 20px;
  background: #1a1f2e;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card h3 {
  font-size: 1.3rem;
  border: none;
  background: none;
}

.step-card p {
  color: white;
  font-size: 0.95rem;
}
.step-card .icon img{
  width: 80px;
  height: 80px;
  object-fit: contain;
   margin-bottom: 15px;
}



/* ==========================================================================
   6. SPORTS GUIDE
   ========================================================================== */
.sports-guide {

  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.sports-guide h2 {
  color: #ffffff;
}

.sports-container {
  max-width: 700px;
  margin: auto;
}

.sports-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 35px auto;
}

.sports-list li {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
   border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}



.sports-btn {
  display: inline-block;
  background: #d50000;
  padding: 12px 25px;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.sports-btn:hover {
  background: #ff1e1e;
  transform: scale(1.05);
}

/*. CHANNELS, MOVIES , feedback */
.channels-slider-2,
.channels-slider-1,
.movies-slider ,
.feedback-section{
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}


.channels-slider-2 .swiper-slide,
.channels-slider-1 .swiper-slide,
.movies-slider .swiper-slide,
.feedback-swiper .swiper-slide  {
    display: flex;
    justify-content: center;
    align-items: center;
}

.channels-slider-2 .swiper-slide img ,
.channels-slider-1 .swiper-slide img {
    width: 80%;
    height: auto;
    margin: 5px;
    aspect-ratio: 150/100;
    object-fit: cover;
    border-radius: 8px;
}
/* MOVIES SLIDER */
.movies-slider .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16; /* Movie poster ratio */
    object-fit: cover;
    margin: 10px;
    border-radius: 15px;
}

/*. FEEDBACK SWIPER */
.feedback-swiper {
    width: 90%;
    margin: 40px auto;
    padding: 20px 0;
    overflow: hidden;
}
.feedback-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    aspect-ratio: 1056/487;
}

/* 7. DEVICES SECTION */
.devices {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.devices-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.device-group {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.device-heading {
  margin-bottom: 20px;
}

.device-heading-logo {
   max-width: 120px;
  height: auto;
  vertical-align: middle;
  
}

.devices-cards {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}

.device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  flex: 0 1 120px;
}

.device-card img {
  width: 60px;
  height: auto;
}

.info {
  color: #0056b3;
  font-weight: 700;
  font-size: 0.9em;
  margin-top: 10px;
}

/* ==========================================================================
   8. FEATURES SECTION
   ========================================================================== */
.features-section {
  padding: 60px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;
}

.feature-card {
  background: #ffffff;
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 350px;
}

.feature-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}

.feature-title {
  background: none;
  border: none;
  background: linear-gradient(90deg, #0060ff, #00b7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-description {
  color: #555;
  font-size: 0.95em;
  line-height: 1.5;
}



/* ==========================================================================
   9. PRICING SECTION
   ========================================================================== */
.pricing {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}

.pricing-prompt {
  text-align: center;
  font-size: 1.1rem;
  color: #000000;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Switch (Standard/Premium) */
.pricing-switch {
  display: flex;
  justify-content: center;
  background-color: #e0e0e0;
  border-radius: 50px;
  padding: 5px;
  margin: 0 auto 2.5rem auto;
  max-width: 400px;
}

.switch-button {
  width: 50%;
  padding: 0.75rem 1rem;
  border: none;
  background-color: transparent;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #555;
}

.switch-button.active {
  background-color: #ffffff;
  color: #0056b3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

/* Pricing Grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* Pricing Cards */
.price-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  border: 3px solid transparent;
  flex-basis: 340px;
  flex-grow: 0;
  flex-shrink: 1;
}


.price-card.featured {
  border-color: #007bff;
  
}

.price-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0056b3;
  margin: 0.5rem 0;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

.price-card ul {
  list-style-type: none;
  padding-left: 0;
  margin: 2rem 0;
}

.price-card li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.75rem;
}

.price-card li::before {
  content: '✓';
  color: #28a745;
  font-weight: 700;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.btn {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0056b3;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn:hover {
  background-color: #004494;
}

/* ==========================================================================
   12. FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 60px 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq {
  max-width: 800px;
  margin: 10px auto;
  background: #00a3a3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: #00b8b8;
  color: #0d3627;
  text-align: left;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #00cfcf;
}

.faq-answer {
  display: none;
  background: #009999;
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
  margin: 0;
  color: #000;
  line-height: 1.5;
  font-size: 1.1rem;
  font-weight: 600;
}
/* ==========================================================================
   14. FOOTER + WHATSAPP
   ========================================================================== */
.footer {
  background-color: #004d40;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-about {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 90%;
  display: block;
  margin: 0 auto;
  animation: legWalk 2s ease-in-out infinite;
  transform-origin: bottom center;
  aspect-ratio: 400/ 200;
}

@keyframes legWalk {
  0% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(-4deg) translateY(-2px); }
  50% { transform: rotate(0deg) translateY(0); }
  75% { transform: rotate(4deg) translateY(-2px); }
  100% { transform: rotate(0deg) translateY(0); }
}

.footer-links h3,
.footer-payments h3 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.2em;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffd700;
}

.payment-icon img {
  width: 300px;
  height: auto;
  margin-right: 10px;
  transition: transform 0.3s;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  font-size: 0.9em;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffd700;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float svg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.2s;
  animation: pulse-border 1.5s infinite;
  
  fill: white;
  
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}




/* --- Responsive Navbar --- */
@media (max-width: 900px) { /* Tablets and below */
  .navbar-container .navbar-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: absolute;
    height: 100vh;
    width: 250px;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    background: rgba(0, 0, 0, 0.95); /* Darker background for menu */
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }

  .navbar-container .navbar-menu.active {
    display: flex; /* Shown when JS adds active class */
  }

  .navbar-toggle {
    display: block;
    z-index: 1000;
  }

  /* Hamburger Animation */
  .navbar-toggle.active .bar:nth-child(2) { opacity: 0; }
  .navbar-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .navbar-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 480px) { /* Mobile Phones */
  .navbar-container {
    padding: 0 1rem;
  }
  .navbar-logo img {
    width: 110px; /* Smaller logo */
    height: auto;
  }
  .navbar-container .navbar-menu li a {
    font-size: 1.4rem;
  }
}

/* --- Responsive Typography --- */
@media (max-width: 768px) { /* Tablet & Mobile */
  h2 {
    font-size: 1.6rem; /* Smaller for mobile */
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 1.1em;
    padding: 8px 12px;
  }
}



/* --- Responsive Hero --- */
@media (min-width: 700px) { /* Desktop Overrides */
  .hero-section {
    flex-direction: row; /* Side by side */
    align-items: center;
    padding: 0 4rem;
    gap: 2rem;
  }

  .hero-content {
    text-align: left;
    padding-right: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-swiper-container {
    margin-top: 0;
    max-width: 50%;
  }

  .hero-swiper {
    aspect-ratio: 100/85; /* Adjust height for 85% slide width */
  }

  .hero-swiper .swiper-slide {
    width: 85%;
  }
  
}

/* --- Responsive Sports --- */
@media (max-width: 480px) { /* Mobile Phones */
  .sports-list li {
    font-size: 1.2rem;
  }
}

/* --- Responsive Devices --- */
@media (max-width: 768px) { /* Tablet */
  .device-heading {
    font-size: 1.2em;
  }
  .device-card img {
    width: 50px;
  }
  .device-card {
    flex: 0 1 100px;
  }
}

@media (max-width: 480px) { /* Phone */
  .devices {
    padding: 40px 10px;
  }
  .devices-content {
    gap: 20px;
  }
  .device-card img {
    width: 45px;
  }
  .device-card {
    flex: 0 1 90px;
  }
}

/* --- Responsive Features --- */
@media (max-width: 480px) {
  .feature-img {
    width: 65px;
    height: 65px;
  }
}
/* --- Responsive Pricing --- */
@media (max-width: 992px) { /* Tablets */
  .price-card.featured {
    transform: scale(1); /* Reset scale on tablet */
  }
}

@media (max-width: 768px) { /* Phones */
  .pricing {
    padding: 1rem;
  }
  .price-card {
    padding: 1.5rem;
    flex-basis: 100%; /* Full width on mobile */
  }
  .price-card.featured {
    transform: scale(1.02); /* Slight pop for featured */
  }
}




/* --- Responsive FAQ --- */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 15px;
  }
  .faq-section h2 {
    font-size: 1.6em;
  }
  .steps, .features-section {
    padding: 40px 15px;
  }
}
