 /* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* HERO WRAPPER with FADE SIDES */
.hero-wrapper {
  background: linear-gradient(to bottom, #ffffff 0%, #c4edfc 100%);
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* FADE LEFT & RIGHT */
.hero-wrapper::before,
.hero-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.hero-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.hero-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* HERO CARD */
.hero-card {
  width: 100%;
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* NAVBAR (optional if used) */
.hero-navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 10px;
}

.logo {
  height: 42px;
}

/* BADGE */
.badge-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
}

.btn-green {
  background: linear-gradient(to right, #16a34a, #22c55e);
}

.btn-blue {
  background: linear-gradient(to right, #2563eb, #3b82f6);
}

/* HERO TEXT */
.hero-text {
  text-align: center;
  max-width: 800px;
  color: #0f172a;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0f172a;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ORANGE BUTTON */
.btn-orange {
  background: #f97316;
  color: white;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.btn-orange.btn-small {
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.25);
}

.btn-orange:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* CAROUSEL */
.channel-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  background: none;
  z-index: 2;
}

.logos-track {
  display: flex;
  gap: 50px;
  animation: scroll-logos 18s linear infinite;
  width: max-content;
  align-items: center;
}

.logos-track img {
  height: 40px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.logos-track img:hover {
  transform: scale(1.05);
}

.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(196, 237, 252, 1), transparent);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(196, 237, 252, 1), transparent);
}

/* SCROLL ANIMATION */
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 10px 20px 0;
  }

  .logo {
    height: 34px;
  }

  .btn-orange {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .logos-track {
    gap: 20px;
  }

  .hero-wrapper::before,
  .hero-wrapper::after {
    width: 50px;
  }
}



.hero-wrapper::before,
.hero-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 1;
}

.hero-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #c4edfc, transparent);
}

.hero-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #c4edfc, transparent);
}
.hero-wrapper {
  background: linear-gradient(to bottom, #ffffff 0%, #c4edfc 100%);
  width: 100%;
  overflow: hidden;
  position: relative;
}




















/* Advantages Section */
.advantages {
  background: #f9fbfd;
  padding: 80px 20px;
}
.advantages .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.advantage-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: left;
  flex: 1 1 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-5px);
}
.advantage-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #3b82f6;
}
.advantage-card:nth-child(2) i {
  color: #10b981;
}
.advantage-card:nth-child(3) i {
  color: #3b82f6;
}
.advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.advantage-card p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}

/* Sports Carousel */
.sports-carousel {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.carousel-track img {
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.carousel-track img:hover {
  transform: scale(1.05);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    padding: 0 10px;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .carousel-track img {
    height: 200px;
  }
  .logos-track {
    gap: 30px;
  }
  .advantage-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .btn-orange.big {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .carousel-track img {
    height: 150px;
  }
  .logos-track img {
    height: 40px;
  }
  .badge {
    font-size: 0.95rem;
    padding: 10px 16px;
    margin-top: 50px;
  }
}






/* ===== PLANS SECTION ===== */


.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0f4f8;
  border-radius: 12px;
  padding: 3px;
  margin: 0 auto 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: fit-content;
  margin-top: 20px;
}


.toggle {
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.toggle:hover {
  background-color: #e2e8f0;
}

.toggle.active {
  background: linear-gradient(to right, #4f46e5, #06b6d4);
  color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}


.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 20px 0;
}

.plan {
  position: relative;
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 360px;
  flex: 1 1 340px;
  text-align: left;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.plan.popular {
  border-color: #3b82f6;
}

.plan .ribbon {
  position: absolute;
  top: -12px;
  right: 16px;
    background: linear-gradient(to right, #ef4444, #f87171); /* 🔴 gradient red */
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 9999px;
}

.ribbon.left {
  left: 16px;
  right: auto;
}

.plan-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
}

.plan-sub {
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 12px;
}

.plan-payment,
.plan-note {
  font-size: 14px;
  color: #475569;
}

.plan .price {
  font-size: 26px;
  font-weight: bold;
  color: #1d4ed8;
  margin-top: 14px;
}

.plan .duration {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.plan button {
  background: linear-gradient(to right, #f97316, #fb923c);
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.plan button:hover {
  background: linear-gradient(to right, #ea580c, #f97316);
  transform: translateY(-2px);
}

.plan ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.plan ul li {
  font-size: 13.5px;
  color: #334155;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
  padding-left: 18px;
}

.plan ul li::before {
  content: "✔";
  color: #10b981;
  position: absolute;
  left: 0;
}

.plan ul li s {
  color: #ef4444;
}
/* section ibo player */


.ibo-offer-new {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e0f2fe;
  color: #0369a1;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(3, 105, 161, 0.1);
  margin: 12px auto;
  text-align: center;
  border: 1.5px solid #38bdf8;
  max-width: max-content;
}

/* End section ibo player */



.subscribe-btn {
  display: block;
  text-align: center;
  background: linear-gradient(to right, #f97316, #fb923c);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: linear-gradient(to right, #ea580c, #f97316);
  transform: translateY(-2px);
}















/* new section */

.streaming-section {
  padding: 60px 20px 40px;
  background: #f9fafa;
  text-align: center;
}

.streaming-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 12px;
}

.streaming-section h2 span {
  display: inline-block;
  color: #2563eb; /* blue */
}

.streaming-section p {
  font-size: 16px;
  color: #4b5563;
  font-weight: 500;
}

@media (max-width: 768px) {
  .streaming-section h2 {
    font-size: 26px;
  }

  .streaming-section p {
    font-size: 14px;
  }
}

/* end section */


/* channel/logo */
.channel-logos {
  padding: 40px 20px;
  background: #f9fafa;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.channel-grid img {
  width: 100%;
  max-width: 140px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.channel-grid img:hover {
  transform: scale(1.05);
}

/* end channel/logo */


/* start Comment ça marche ? */
.how-it-works {
  padding: 60px 20px;
  background: #f9fafa;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 40px;
}

.steps {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.circle {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(to right, #2563eb, #3b82f6); /* Blue gradient */
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.text p {
  font-size: 15px;
  color: #4b5563;
}

.cta-box {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box .iptv {
  color: #10b981;
}

.cta-button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #10b981, #22c55e); /* Green gradient */
  color: white;
  font-weight: bold;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
  }

  .circle {
    margin-bottom: 10px;
  }

  .how-it-works h2 {
    font-size: 26px;
  }
}

/* End Comment ça marche ? */

/* FAQ */
.faq-wrapper {
  padding: 60px 20px;
  background: #f9fafb;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
}

.faq-container {
  width: 100%;
  max-width: 680px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

.faq-heading {
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
  color: #1f2937;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: block;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #111827;
}

.faq-question::after {
  content: '\25BC';
  position: absolute;
  right: 24px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14.5px;
  color: #4b5563;
  padding: 0 24px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 400px;
  padding-bottom: 18px;
}

/* FAQ */

/* whatsapp */
.contact-box {
  background: #ffffff;
  max-width: 800px;
  margin: 60px auto;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.contact-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1f2937;
}

.contact-text {
  font-size: 17px;
  color: #475569;
  margin-bottom: 32px;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.btn-contact.whatsapp {
  background: #22c55e;
}

.btn-contact.telegram {
  background: #2563eb;
}

.btn-contact.email {
  background: linear-gradient(to right, #60a5fa, #a78bfa);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 18px;
}

@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* end whatsapp */

/* footer */

.footer {
  background: #f9fafb;
  padding: 60px 20px 40px;
  font-family: 'Segoe UI', sans-serif;
  color: #374151;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.footer-column p {
  font-size: 14.5px;
  color: #6b7280;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #1d4ed8;
  text-decoration: none;
  font-size: 14.5px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* hadi katdir espace bin kol element */
}

.footer-bottom .payment-icons img {
  height: 30px;
  margin: 0 10px;
}

.footer-bottom .copyright {
  color: #555;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    margin-bottom: 20px;
  }
}
/* End footer */



.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(to bottom, #22c55e, #16a34a);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: linear-gradient(to bottom, #16a34a, #15803d);
}



/* paypal*/

.paypal-btn.no-text {
  background: white;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 2px solid #0070BA;
}

.paypal-btn.no-text:hover {
  transform: scale(1.05);
}

.paypal-logo-big {
  width: 80px;
  height: auto;
}




/* End paypal*/
