/* =========================================================
   UltraIPTV — Custom Enhancements
   (Navbar restyle, Plans grid restructure, WhatsApp button)
   This file loads AFTER style.css and only overrides/extends —
   nothing in the original CSS/HTML has been deleted.
   ========================================================= */

:root {
  --pink: #ff2d78;
  --pink-dark: #e0004f;
  --pink-light: #ff7fa8;
  --pink-glow: rgba(255, 45, 120, 0.45);
}

/* =========================================================
   1. NAVBAR
   ========================================================= */
#ftco-navbar {
  background: rgba(15, 15, 20, 0.85) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 45, 120, 0.25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  padding-top: 14px;
  padding-bottom: 14px;
  transition: all 0.35s ease;
  z-index: 999;
}

#ftco-navbar.scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(10, 10, 14, 0.96) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

#ftco-navbar .navbar-brand {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #fff !important;
}

#ftco-navbar .navbar-brand span {
  color: var(--pink);
  text-shadow: 0 0 18px var(--pink-glow);
}

/* Center the nav menu within the bar */
#ftco-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  #ftco-nav {
    display: flex;
    justify-content: center;
    flex: 1;
  }
}

#ftco-navbar .navbar-nav {
  margin: 0 auto !important;
  align-items: center;
}

#ftco-navbar .navbar-nav .nav-item {
  margin: 0 6px;
  position: relative;
}

#ftco-navbar .navbar-nav .nav-link {
  color: #eaeaea !important;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 10px 16px !important;
  position: relative;
  transition: color 0.3s ease;
}

#ftco-navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

#ftco-navbar .navbar-nav .nav-link:hover,
#ftco-navbar .navbar-nav .nav-item.active .nav-link {
  color: #fff !important;
}

#ftco-navbar .navbar-nav .nav-link:hover::after,
#ftco-navbar .navbar-nav .nav-item.active .nav-link::after {
  width: 60%;
}

/* Right-side action buttons (desktop) */
#ftco-navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#ftco-navbar .btn-nav-plans {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 6px 18px var(--pink-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

#ftco-navbar .btn-nav-plans:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--pink-glow);
  color: #fff !important;
}

#ftco-navbar .btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 45, 120, 0.35);
  color: #fff !important;
  font-size: 18px;
  transition: all 0.25s ease;
}

#ftco-navbar .btn-nav-whatsapp:hover {
  background: var(--pink);
  transform: scale(1.08);
}

#ftco-navbar .navbar-toggler {
  border: 1px solid var(--pink) !important;
  color: #fff !important;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  #ftco-nav {
    justify-content: flex-start;
    padding-top: 10px;
  }
  #ftco-navbar .navbar-nav {
    margin: 0 !important;
    align-items: flex-start;
    width: 100%;
  }
  #ftco-navbar .navbar-nav .nav-link::after {
    display: none;
  }
  /* The desktop pill button is replaced by an in-menu item on mobile */
  #ftco-navbar .nav-actions {
    display: none;
  }
  #ftco-navbar .nav-item-plan {
    width: 100%;
    margin-top: 10px;
  }
  #ftco-navbar .btn-nav-plans-mobile {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff !important;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 6px 18px var(--pink-glow);
  }
}

/* =========================================================
   2. IPTV PLANS SECTION
   ========================================================= */
.plans-section {
  padding-top: 40px;
}

.plans-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px 30px -12px;
}

.plan-col {
  padding: 0 12px;
  margin-bottom: 24px;
  display: flex;
}

@media (min-width: 992px) {
  .plan-col {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .plan-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 575.98px) {
  .plan-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Plan card */
.plan-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: #fff;
  border-radius: 16px;
  padding: 38px 26px 30px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px var(--pink-glow);
}

.plan-card.featured {
  border: 2px solid var(--pink);
  transform: translateY(-8px);
}

.plan-card .plan-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 38px;
  transform: rotate(40deg);
  box-shadow: 0 4px 10px var(--pink-glow);
}

.plan-card .plan-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.12), rgba(255, 45, 120, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--pink);
}

.plan-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.plan-card .plan-tagline {
  font-size: 13px;
  color: #999;
  margin-bottom: 18px;
}

.plan-card .plan-stars {
  color: var(--pink);
  margin-bottom: 16px;
  font-size: 13px;
}

.plan-card .list-accomodation {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
  flex: 1;
}

.plan-card .list-accomodation li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14.5px;
  color: #555;
  display: flex;
  align-items: center;
}

.plan-card .list-accomodation li i {
  color: var(--pink);
  margin-right: 10px;
  font-size: 13px;
}

.plan-card .list-accomodation li span {
  font-weight: 600;
  color: #222;
  margin-right: 4px;
}

.plan-card .btn-plan {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  padding: 13px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px var(--pink-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card .btn-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--pink-glow);
  color: #fff;
}

/* Image column between the cards */
.plan-image-col {
  min-height: 560px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.plan-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(224, 0, 79, 0.75) 100%);
}

.plan-image-col .plan-image-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px;
  z-index: 2;
  color: #fff;
}

.plan-image-col .plan-image-caption h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-image-col .plan-image-caption p {
  font-size: 13.5px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* =========================================================
   3. FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 1000;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.6;
  animation: whatsapp-pulse 1.8s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 26px;
    right: 16px;
    bottom: 16px;
  }
}

/* =========================================================
   3b. HERO SECTION HEIGHT FIX
   (The theme's JS forces .js-fullheight to the exact window
   height. On shorter windows the big heading pushed the CTA
   buttons past that box, so the section below covered them.
   min-height + auto lets the hero grow to fit its content
   instead of clipping it, and centers it nicely either way.)
   ========================================================= */
.hero-wrap.js-fullheight {
  height: auto !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 90px;
  box-sizing: border-box;
}

.hero-wrap .slider-text.js-fullheight {
  height: auto !important;
  min-height: 0 !important;
}

.hero-wrap .slider-text h1.mb-4 {
  font-size: 58px;
}

@media (max-width: 991.98px) {
  .hero-wrap.js-fullheight {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .hero-wrap .slider-text h1.mb-4 {
    font-size: 38px;
  }
}

/* =========================================================
   4. HERO CTA BUTTONS
   (Replaces the barely-visible default Bootstrap btn-primary /
   btn-white with on-brand, high-contrast pill buttons)
   ========================================================= */
.hero-wrap .slider-text .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-wrap .slider-text .btn-hero-primary,
.hero-wrap .slider-text .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-wrap .slider-text .btn-hero-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px var(--pink-glow);
}

.hero-wrap .slider-text .btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px var(--pink-glow);
  color: #fff;
}

.hero-wrap .slider-text .btn-hero-outline {
  background: rgba(15, 15, 20, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid #ffffff;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-wrap .slider-text .btn-hero-outline:hover {
  background: #ffffff;
  color: #1c0c14;
  text-shadow: none;
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575.98px) {
  .hero-wrap .slider-text .btn-hero-primary,
  .hero-wrap .slider-text .btn-hero-outline {
    width: 100%;
    padding: 15px 20px;
  }
}

/* =========================================================
   5. HOMEPAGE FEATURE CARDS (Live TV / Support / HD & 4K)
   ========================================================= */
.ftco-services .services-wrap {
  padding: 0 0 26px 0;
  border-radius: 18px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(28, 12, 20, 0.1);
  border: 1px solid rgba(28, 12, 20, 0.06);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  position: relative;
}

.ftco-services .services-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 44px rgba(28, 12, 20, 0.18);
}

.ftco-services .services-wrap .img {
  border-radius: 18px 18px 0 0;
  position: relative;
  overflow: hidden;
  transition: filter 0.4s ease;
}

.ftco-services .services-wrap .img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 12, 20, 0) 40%, rgba(28, 12, 20, 0.55) 100%);
}

.ftco-services .services-wrap:hover .img {
  filter: saturate(1.15) brightness(1.03);
}

.ftco-services .services-wrap .service-icon-badge {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 24px var(--pink-glow), 0 0 0 6px #fff;
  z-index: 2;
  transition: transform 0.4s ease;
}

.ftco-services .services-wrap:hover .service-icon-badge {
  transform: translateX(-50%) rotate(-10deg) scale(1.08);
}

.ftco-services .services-wrap .media-body {
  padding-top: 40px !important;
}

.ftco-services .services-wrap .media-body h3.heading {
  font-size: 19px;
  font-weight: 700;
  color: #241017;
  margin-bottom: 10px;
}

.ftco-services .services-wrap .media-body p {
  font-size: 13.5px;
  color: #8a7885;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-service-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 8px 20px var(--pink-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-service-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px var(--pink-glow);
  color: #fff !important;
}

/* =============================================
   Fix: Testimonial cards had uneven heights
   (owl-carousel items don't stretch by default,
   so cards with longer quotes looked taller than
   cards with shorter quotes in the same row)
   ============================================= */
.testimony-section .owl-stage{
  display:flex;
}
.testimony-section .owl-item{
  display:flex;
  height:auto;
  align-self:stretch;
}
.testimony-section .owl-item .item{
  display:flex;
  width:100%;
}
.testimony-wrap{
  width:100%;
  display:flex;
  flex-direction:column;
}
.testimony-wrap .text{
  display:flex;
  flex-direction:column;
  flex:1;
}
.testimony-wrap .text p:first-of-type{
  flex:1;
}

/* =============================================
   Unified heading style — every major section
   heading matches the "Every Match. Every Movie.
   Every Screen." heading: same font, size, weight,
   dark ink color with a pink accent only on the
   emphasized word/phrase. (Hero heading is excluded.)
   ============================================= */
.site-heading{
  font-family:'Playfair Display', serif !important;
  font-weight:800 !important;
  font-size:clamp(34px, 5.4vw, 56px) !important;
  line-height:1.18 !important;
  letter-spacing:0.2px !important;
  color:#1c0c14 !important;
}

.site-heading em{
  font-style:normal;
  background:linear-gradient(135deg, var(--pink-light), var(--pink), var(--pink-dark));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* Contact page map embed sizing */
.map {
  width: 100%;
  height: 400px;
}
.map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
