/* ==========================================================================
   UCN SMART - FULL WEBSITE STYLING & DESIGN SYSTEM
   Exact Palette & Ambient Wi-Fi SVG Integrations
   ========================================================================== */

/* --- Custom Variables & Palette --- */
:root {
  --primary-cyan: #00a8cc;
  --primary-cyan-gradient: linear-gradient(135deg, #00a8cc 0%, #008eb5 100%);
  --cyan-glow: rgba(0, 168, 204, 0.25);
  
  --primary-red: #e52427;
  --primary-red-hover: #c91b1e;
  --coral-border: #e63946;
  
  /* Exact extracted heading tones */
  --heading-dark: #232b38;
  --heading-teal-1: #2f6e7f;
  --heading-teal-2: #3d889c;
  --heading-teal-3: #2c5968;
  
  --text-dark: #232b38;
  --text-heading: #232b38;
  --text-body: #475569;
  --text-muted: #64748b;
  
  --card-bg: rgba(255, 255, 255, 0.96);
  --card-border: rgba(255, 255, 255, 0.95);
  --card-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.06), 
                 0 4px 10px -2px rgba(15, 23, 42, 0.03),
                 0 0 0 1px rgba(255, 255, 255, 0.95);
  --card-shadow-hover: 0 20px 40px -6px rgba(0, 168, 204, 0.18), 
                       0 6px 16px -2px rgba(15, 23, 42, 0.05),
                       0 0 0 1.5px rgba(0, 168, 204, 0.3);
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-family: var(--font-main);
  background-color: #fbfcfe;
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #fbfcfe;
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 76px; /* Offset for fixed floating header */
}

/* ==========================================================================
   PREMIUM FIXED STICKY HEADER & BRANDING CRADLE
   ========================================================================== */
.main-sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.main-sticky-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.09);
  padding: 8px 0;
  border-bottom-color: rgba(0, 168, 204, 0.2);
}

.header-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

/* 1. Enhanced Brand Showcase Cradle */
.brand-showcase-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-badge-cradle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #182230 0%, #0d1522 100%);
  padding: 7px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 168, 204, 0.35);
  box-shadow: 0 8px 24px -4px rgba(13, 21, 34, 0.28), 
              0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: var(--transition-bounce);
}

.brand-showcase-link:hover .brand-badge-cradle {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(0, 168, 204, 0.65);
  box-shadow: 0 12px 30px -4px rgba(0, 168, 204, 0.32);
}

.brand-main-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Live Fiber Network Tag */
.brand-network-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 168, 204, 0.16);
  border: 1px solid rgba(0, 168, 204, 0.32);
  border-radius: 999px;
}

.network-pulse-dot {
  width: 6px;
  height: 6px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 8px #00e5ff;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #00e5ff; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.network-tag-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 2. Desktop Navigation Menu */
.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(241, 245, 249, 0.85);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.header-nav-item {
  font-size: 0.94rem;
  font-weight: 550;
  color: #475569;
  padding: 7px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.header-nav-item:hover {
  color: var(--primary-cyan);
  background: rgba(255, 255, 255, 0.9);
}

.header-nav-item.active {
  color: #ffffff;
  background: var(--primary-cyan-gradient);
  font-weight: 600;
  box-shadow: 0 4px 14px var(--cyan-glow);
}

/* 3. Action Button */
.btn-nav-quickpay {
  background: #ffffff;
  color: #1e293b !important;
  border: 1.6px solid var(--coral-border);
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 12px rgba(229, 36, 39, 0.06);
}

.btn-nav-quickpay:hover {
  background: var(--primary-red);
  color: #ffffff !important;
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 36, 39, 0.25);
}

.quickpay-icon {
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.btn-nav-quickpay:hover .quickpay-icon {
  transform: scale(1.15) rotate(6deg);
}

/* Mobile Morphing Hamburger Button */
.mobile-menu-trigger {
  border: none;
  background: rgba(0, 168, 204, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.mobile-menu-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.25);
}

.trigger-bar {
  width: 18px;
  height: 2px;
  background-color: #232b38;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-menu-trigger:not(.collapsed) .bar-1 {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-trigger:not(.collapsed) .bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-trigger:not(.collapsed) .bar-3 {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Slide-Down Dropdown Card */
.mobile-menu-dropdown {
  width: 100%;
  max-width: 1440px;
  margin: 10px auto 0;
  padding: 0 16px;
}

.mobile-menu-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  padding: 16px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-item {
  display: block;
  padding: 11px 16px;
  border-radius: 12px;
  color: #334155;
  font-weight: 550;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: rgba(0, 168, 204, 0.08);
  color: var(--primary-cyan);
  font-weight: 600;
}

.mobile-quickpay-btn {
  background: var(--primary-cyan-gradient);
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px var(--cyan-glow);
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-wrapper {
  position: relative;
  min-height: calc(100vh - 75px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 35px 0;
  background-color: #fbfcfe;
  overflow: hidden;
}

/* Background Artwork */
.hero-bg-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.98;
}

/* Hero Content Box */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 28px;
}

.hero-main-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

/* Hero Headings (Eye-friendly, rich slate-charcoal and elegant teal harmony) */
.hero-title {
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--heading-dark);
  margin-bottom: 22px;
}

/* Exact gradient for "Entertainment." from design.png */
.hero-title .highlight-text {
  background: linear-gradient(115deg, #2d6e7f 0%, #3e8a9e 35%, #2a5866 70%, #232b38 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 450;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 38px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA Buttons */
.hero-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

/* Primary Button (Explore Plans) */
.btn-explore {
  background: var(--primary-cyan-gradient);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 15px 40px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 24px var(--cyan-glow), 0 2px 6px rgba(0, 168, 204, 0.15);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-explore:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 168, 204, 0.38), 0 4px 10px rgba(0, 168, 204, 0.2);
  color: #ffffff !important;
}

.btn-explore:hover::before {
  left: 100%;
}

.btn-explore:active {
  transform: translateY(-1px) scale(0.99);
}

/* Secondary Button (Check Availability) */
.btn-check-availability {
  background: #ffffff;
  color: #232b38 !important;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 14px 38px;
  border-radius: 999px;
  border: 1.8px solid var(--coral-border);
  box-shadow: 0 4px 16px rgba(229, 36, 39, 0.06), 0 1px 4px rgba(0, 0, 0, 0.02);
  transition: var(--transition-bounce);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-check-availability:hover {
  background: #ffffff;
  color: var(--primary-red) !important;
  border-color: var(--primary-red);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(229, 36, 39, 0.15), 0 3px 8px rgba(0, 0, 0, 0.04);
}

.btn-check-availability:active {
  transform: translateY(-1px) scale(0.99);
}

/* ==========================================================================
   DESKTOP FLOATING FEATURE CARDS (4 CORNERS) - COMPACT & PRECISE
   ========================================================================== */
.floating-card {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 146px;
  min-height: 142px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  z-index: 15;
  cursor: pointer;
  user-select: none;
}

.floating-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 168, 204, 0.35);
  transform: scale(1.05) translateY(-5px) !important;
}

.floating-card-icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-card:hover .floating-card-icon-wrap {
  transform: scale(1.08);
}

.floating-card-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.04));
}

.floating-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #232b38;
  line-height: 1.22;
  margin: 0;
  transition: color 0.3s ease;
}

.floating-card:hover .floating-card-title {
  color: var(--primary-cyan);
}

/* Exact Absolute Positions */
.card-top-left {
  top: 31%;
  left: 4.5%;
  animation: floatLevitate1 6s infinite ease-in-out;
}

.card-bottom-left {
  top: 61%;
  left: 15.5%;
  animation: floatLevitate2 7s infinite ease-in-out 1s;
}

.card-top-right {
  top: 19%;
  right: 7.5%;
  animation: floatLevitate3 6.5s infinite ease-in-out 0.5s;
}

.card-bottom-right {
  top: 59%;
  right: 13.5%;
  animation: floatLevitate4 7.5s infinite ease-in-out 1.5s;
}

/* Floating Levitation Keyframes */
@keyframes floatLevitate1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatLevitate2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatLevitate3 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatLevitate4 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-13px) rotate(-0.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Mobile Cards Grid */
.floating-cards-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 440px;
  margin: 25px auto 25px auto;
}

.mobile-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-card:active {
  transform: scale(0.98);
}

.mobile-card-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.mobile-card-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mobile-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #232b38;
  line-height: 1.2;
  margin: 0;
}

/* Bottom Feature Pill */
.hero-bottom-pill-wrap {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 20px 15px;
}

.hero-feature-pill {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 13px 40px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #232b38;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05), 0 0 0 1px rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.hero-feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(0, 168, 204, 0.2);
}

.pill-dot {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1;
}

/* ==========================================================================
   SECTION BADGES & COMMON HEADINGS
   ========================================================================== */
.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 168, 204, 0.08);
  border: 1px solid rgba(0, 168, 204, 0.25);
  border-radius: 999px;
  color: var(--primary-cyan);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-badge-pill.light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-red);
}

.section-main-title {
  font-size: clamp(1.85rem, 3.0vw, 2.55rem);
  font-weight: 800;
  color: var(--heading-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

@media (min-width: 992px) {
  .services-main-title-nowrap {
    white-space: nowrap;
  }
}

.section-sub-title {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.highlight-text {
  background: linear-gradient(115deg, #2d6e7f 0%, #3e8a9e 35%, #2a5866 70%, #232b38 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ==========================================================================
   HEADING WI-FI PULSE BADGES (SECTION-BOUND, SCROLLS NATURALLY)
   ========================================================================== */
.services-header-container {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.plans-header-container {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.services-header-container > *:not(.heading-wifi-badge),
.plans-header-container > *:not(.heading-wifi-badge) {
  position: relative;
  z-index: 3;
}

.heading-wifi-badge {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.wifi-pulse-element {
  width: 230px;
  height: 230px;
  filter: drop-shadow(0 12px 28px rgba(0, 168, 204, 0.22));
}

/* Section 2: Placed on Left of Heading with clear space, zero overlap */
.heading-wifi-badge.wifi-left {
  left: -155px;
  top: -25px;
  transform: rotate(-36deg);
  opacity: 0.92;
  z-index: 10;
  will-change: transform;
}

@media (max-width: 1280px) {
  .heading-wifi-badge.wifi-left {
    left: -110px;
    transform: rotate(-36deg) scale(0.88);
  }
}

@media (max-width: 991px) {
  /* Completely hide moving Wi-Fi SVG on mobile and tablet screens */
  #travelingWifi,
  .heading-wifi-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ==========================================================================
   SECTION 2: STATE-OF-THE-ART SERVICES BENTO GRID
   ========================================================================== */
.section-services {
  position: relative;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f8fb 100%);
  overflow: visible;
  padding: 90px 0;
}

.bento-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  padding: 34px 30px;
  box-shadow: 0 14px 35px -6px rgba(15, 23, 42, 0.05);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px -10px rgba(0, 168, 204, 0.18);
  border-color: rgba(0, 168, 204, 0.4);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-speed-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.95) 100%);
}

.bento-iptv-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 242, 242, 0.95) 100%);
}

.bento-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 8px;
}

.bento-tag.cyan {
  background: rgba(0, 168, 204, 0.12);
  color: var(--primary-cyan);
}

.bento-tag.red {
  background: rgba(229, 36, 39, 0.1);
  color: var(--primary-red);
}

.bento-tag.green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.bento-title {
  font-size: 1.48rem;
  font-weight: 800;
  color: var(--heading-dark);
  line-height: 1.25;
  margin: 6px 0 10px 0;
}

.bento-title.sm {
  font-size: 1.22rem;
}

.bento-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.bento-desc.sm {
  font-size: 0.88rem;
  line-height: 1.5;
}

.bento-meta-pills {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill-bullet {
  width: 6px;
  height: 6px;
  background: var(--primary-cyan);
  border-radius: 50%;
}

.bento-svg-graphic {
  max-height: 200px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-svg-graphic.sm {
  max-height: 165px;
}

.bento-card:hover .bento-svg-graphic {
  transform: scale(1.04) translateY(-3px);
}

/* ==========================================================================
   SECTION 3: POPULAR FIBER & IPTV PLANS
   ========================================================================== */
/* ==========================================================================
   SECTION 3: PREMIUM FIBER & IPTV PRICING CARDS (REDESIGNED)
   ========================================================================== */
/* ==========================================================================
   SECTION 3: UCN SMART SPEED ENGINE PRICING SUITE (UNIQUE & STRICT BRAND PALETTE)
   ========================================================================== */
.section-plans {
  position: relative;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 50%, #f4f8fb 100%);
  padding: 100px 0;
  overflow: visible;
}

.plan-toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(241, 245, 249, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.plan-toggle-btn {
  border: none;
  background: transparent;
  padding: 9px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.plan-toggle-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.toggle-discount-badge {
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff4b2b 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(229, 36, 39, 0.3);
}

/* Master Plan Engine Card */
.plan-engine-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 30px;
  border: 1.5px solid #e2e8f0;
  padding: 34px 28px;
  box-shadow: 0 12px 32px -4px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.plan-engine-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 168, 204, 0.45);
  box-shadow: 0 24px 55px -6px rgba(0, 168, 204, 0.18);
}

/* Featured 300 Mbps Hero Showstopper Card */
.plan-engine-card.featured-hero {
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, var(--primary-cyan) 0%, #3fa9f5 50%, var(--primary-red) 100%) border-box;
  box-shadow: 0 20px 50px -4px rgba(0, 168, 204, 0.22);
  transform: scale(1.03);
}

.plan-engine-card.featured-hero:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 28px 65px -6px rgba(0, 168, 204, 0.32);
}

/* Top Hero Ribbon */
.hero-top-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff4b2b 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 5px 22px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 14px rgba(229, 36, 39, 0.35);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-top-ribbon .ribbon-glow {
  display: inline-block;
  animation: starPulse 1.8s infinite ease-in-out;
}

/* Card Top Section */
.plan-engine-top {
  text-align: center;
  margin-bottom: 20px;
}

.plan-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.starter-pill {
  background: rgba(0, 168, 204, 0.08);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 168, 204, 0.2);
}

.featured-pill {
  background: rgba(229, 36, 39, 0.08);
  color: var(--primary-red);
  border: 1px solid rgba(229, 36, 39, 0.2);
  margin-top: 10px;
}

.titan-pill {
  background: rgba(35, 43, 56, 0.08);
  color: var(--heading-dark);
  border: 1px solid rgba(35, 43, 56, 0.2);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-cyan);
}

.pill-dot.red {
  background: var(--primary-red);
}

.pill-dot.cyan {
  background: var(--primary-cyan);
}

/* Speed Gauge Container */
.plan-gauge-wrap {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 10px;
}

.plan-gauge-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 168, 204, 0.12));
}

.plan-speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--heading-dark);
  background: #f1f5f9;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.featured-speed-badge {
  background: rgba(229, 36, 39, 0.08);
  color: var(--primary-red);
  border: 1px solid rgba(229, 36, 39, 0.2);
}

.titan-speed-badge {
  background: rgba(0, 168, 204, 0.08);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 168, 204, 0.2);
}

/* Price Block */
.plan-price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #f1f5f9;
}

.plan-price-block .currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin-right: 2px;
}

.plan-price-block .amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--heading-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-price-block .period {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

.plan-price-block .tax-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  margin-left: 8px;
}

.featured-price .amount {
  background: linear-gradient(135deg, var(--heading-dark) 0%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hardware Banner Strip */
.brand-hardware-banner {
  background: linear-gradient(135deg, rgba(0, 168, 204, 0.06) 0%, rgba(229, 36, 39, 0.06) 100%);
  border: 1px solid rgba(0, 168, 204, 0.2);
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.brand-hardware-banner.titan-banner {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.15);
}

.banner-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.titan-badge {
  color: var(--primary-cyan);
}

.banner-desc {
  font-size: 0.82rem;
  color: var(--heading-dark);
  line-height: 1.35;
}

/* Performance Spec Meters Table */
.plan-specs-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #f1f5f9;
}

.spec-meter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.spec-label {
  color: var(--text-muted);
  font-weight: 600;
}

.spec-val {
  color: var(--heading-dark);
  font-weight: 700;
  text-align: right;
}

.spec-val.highlight {
  color: var(--primary-cyan);
  font-weight: 800;
}

/* OTT Brand Suite Chips */
.brand-ott-suite {
  margin-bottom: 22px;
}

.suite-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.suite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.suite-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--heading-dark);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 3px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

/* Plan Inclusions List */
.plan-inclusions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.inclusion-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.35;
}

.inc-icon {
  width: 18px;
  height: 18px;
  background: rgba(0, 168, 204, 0.1);
  color: var(--primary-cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Buttons */
.btn-engine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-engine .arrow-glyph {
  transition: transform 0.3s ease;
}

.btn-engine:hover .arrow-glyph {
  transform: translateX(4px);
}

.starter-btn {
  color: var(--heading-dark);
  background: #f8fafc;
  border: 1.8px solid #cbd5e1;
}

.starter-btn:hover {
  background: var(--heading-dark);
  color: #ffffff;
  border-color: var(--heading-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.featured-btn {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #0088a6 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 168, 204, 0.4);
}

.featured-btn:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, #d41c1f 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(229, 36, 39, 0.45);
}

.titan-btn {
  background: var(--heading-dark);
  color: #ffffff;
  border: 1.5px solid #334155;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.titan-btn:hover {
  background: linear-gradient(135deg, #0f172a 0%, var(--primary-cyan) 100%);
  border-color: var(--primary-cyan);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 168, 204, 0.35);
}

/* ==========================================================================
   SECTION 4: DIGITAL ENTERTAINMENT & IPTV SHOWCASE
   ========================================================================== */
.section-entertainment {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f7fb 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.section-entertainment .container {
  position: relative;
  z-index: 5;
}

.entertainment-perks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s ease;
}

/* ==========================================================================
   SECTION 4: DIGITAL ENTERTAINMENT & 4K SMART CINEMA SHOWCASE (REDESIGNED)
   ========================================================================== */
.section-entertainment {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 50%, #ffffff 100%);
  padding: 100px 0;
  overflow: visible;
}

/* Left Bento Capsules Grid */
.cinema-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.cinema-capsule-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid #e2e8f0;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cinema-capsule-card:hover {
  transform: translateY(-4px) translateX(4px);
  border-color: rgba(0, 168, 204, 0.4);
  box-shadow: 0 18px 40px rgba(0, 168, 204, 0.12);
}

.capsule-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.capsule-icon-wrap.cyan-glow {
  background: rgba(0, 168, 204, 0.1);
  border: 1px solid rgba(0, 168, 204, 0.25);
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.15);
}

.capsule-icon-wrap.red-glow {
  background: rgba(229, 36, 39, 0.1);
  border: 1px solid rgba(229, 36, 39, 0.25);
  box-shadow: 0 4px 12px rgba(229, 36, 39, 0.15);
}

.capsule-icon-wrap.dark-glow {
  background: rgba(35, 43, 56, 0.08);
  border: 1px solid rgba(35, 43, 56, 0.2);
  box-shadow: 0 4px 12px rgba(35, 43, 56, 0.1);
}

.capsule-content {
  flex: 1;
}

.capsule-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.capsule-title {
  font-size: 1.06rem;
  font-weight: 800;
  color: var(--heading-dark);
  margin: 0;
  line-height: 1.35;
}

.capsule-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

@media (max-width: 576px) {
  .cinema-capsule-card {
    padding: 18px 16px;
    gap: 12px;
    border-radius: 18px;
  }
  .capsule-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .capsule-title {
    font-size: 1rem;
  }
  .capsule-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
  }
}

.capsule-tag.cyan {
  background: rgba(0, 168, 204, 0.1);
  color: var(--primary-cyan);
}

.capsule-tag.red {
  background: rgba(229, 36, 39, 0.1);
  color: var(--primary-red);
}

.capsule-tag.dark {
  background: #f1f5f9;
  color: var(--heading-dark);
}

.capsule-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 12px 0;
}

.capsule-chips-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c-chip {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--heading-dark);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 3px 10px;
  border-radius: 8px;
}

/* 7-Day Cloud Rewind Scrubber Bar */
.rewind-scrubber-bar {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
}

.scrubber-track {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  position: relative;
  margin-bottom: 6px;
}

.scrubber-progress {
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--primary-red) 100%);
  border-radius: 999px;
}

.scrubber-handle {
  position: absolute;
  top: 50%;
  left: 82%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(229, 36, 39, 0.4);
}

.scrubber-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
}

.live-pulse-txt {
  color: var(--primary-red);
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Voice Waveform Simulator */
.voice-wave-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 14px;
}

.voice-quote {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--heading-dark);
  font-style: italic;
}

.audio-wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}

.audio-wave-bars .bar {
  width: 3px;
  background: var(--primary-cyan);
  border-radius: 999px;
  animation: wavePulse 1.2s infinite ease-in-out;
}

.audio-wave-bars .b1 { height: 6px; animation-delay: 0.1s; }
.audio-wave-bars .b2 { height: 16px; animation-delay: 0.2s; background: var(--primary-red); }
.audio-wave-bars .b3 { height: 12px; animation-delay: 0.3s; }
.audio-wave-bars .b4 { height: 18px; animation-delay: 0.4s; background: var(--primary-red); }
.audio-wave-bars .b5 { height: 10px; animation-delay: 0.2s; }
.audio-wave-bars .b6 { height: 7px; animation-delay: 0.5s; }

@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Bottom Action Row */
.cinema-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cinema-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #008eb5 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 168, 204, 0.35);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-cinema-action:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, #d41c1f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(229, 36, 39, 0.45);
}

.btn-cinema-action .action-arrow {
  transition: transform 0.3s ease;
}

.btn-cinema-action:hover .action-arrow {
  transform: translateX(4px);
}

.instant-active-tag {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-red);
}

/* ==========================================================================
   RIGHT VISUAL: 4K SMART CINEMA GLASS CONSOLE
   ========================================================================== */
.cinema-screen-console {
  position: relative;
  padding: 10px;
}

/* Floating HUD Badges */
.floating-hud-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1.5px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--heading-dark);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: hudFloat 4s ease-in-out infinite alternate;
}

.floating-hud-badge.top-right {
  top: -18px;
  right: 15px;
}

.floating-hud-badge.bottom-left {
  bottom: -18px;
  left: 15px;
  animation-delay: -2s;
}

.hud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-red);
  box-shadow: 0 0 8px var(--primary-red);
  animation: dotBlink 1.4s infinite;
}

@keyframes hudFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* TV Bezel Container */
.tv-console-bezel {
  background: #0b1120;
  border-radius: 28px;
  border: 3px solid #1e293b;
  box-shadow: 0 25px 60px -10px rgba(15, 23, 42, 0.35),
              0 0 40px -10px rgba(0, 168, 204, 0.2);
  overflow: hidden;
}

/* TV System Header */
.tv-system-header {
  background: #111827;
  border-bottom: 1px solid #1f2937;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tv-status-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.live-pill {
  background: rgba(229, 36, 39, 0.2);
  border: 1px solid rgba(229, 36, 39, 0.4);
  color: #ff4757;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.dot-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e52427;
  animation: dotBlink 1s infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.tv-brand-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tv-status-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wifi-link-pill {
  color: var(--primary-cyan);
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(0, 168, 204, 0.15);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.clock-display {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .tv-system-header {
    padding: 8px 12px;
  }
  .tv-brand-title {
    display: none; /* Keep clean single-line header on small mobile screens */
  }
}

/* TV Viewport */
.tv-cinema-viewport {
  position: relative;
}

.cinema-player-canvas {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 70%, #0f172a 100%);
  padding: 36px 28px 24px;
  position: relative;
  overflow: hidden;
}

.cinema-content-badge {
  text-align: center;
  margin-bottom: 24px;
}

.genre-pill {
  background: linear-gradient(135deg, var(--primary-red) 0%, #ff4b2b 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 8px;
}

.cinema-match-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cinema-match-info {
  color: #94a3b8;
  font-size: 0.84rem;
  margin: 0;
}

/* Player Overlay HUD */
.player-overlay-hud {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.play-btn-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #008eb5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 0 24px rgba(0, 168, 204, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-btn-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 168, 204, 0.85);
}

.audio-format-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.fmt-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 10px;
  border-radius: 6px;
}

/* Player DVR Timeline */
.player-dvr-timeline {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
}

.dvr-line-fill {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--primary-red) 100%);
  border-radius: 999px;
  margin-bottom: 6px;
}

.dvr-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}

.live-tag-dvr {
  color: #ff4757;
  font-weight: 800;
}

/* TV Apps Dock & Continuous Moving Carousel */
.tv-apps-dock {
  background: #090e17;
  padding: 16px 20px;
  border-top: 1px solid #1e293b;
  overflow: hidden;
}

.dock-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dock-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.dock-auto-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--primary-cyan);
  background: rgba(0, 168, 204, 0.12);
  border: 1px solid rgba(0, 168, 204, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.dock-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.dock-marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: smoothDockMarquee 22s linear infinite;
  will-change: transform;
}

.dock-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes smoothDockMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.dock-item {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 8px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dock-item:hover {
  background: #1e293b;
  border-color: rgba(0, 168, 204, 0.5);
  transform: translateY(-2px);
}

.dock-item.active {
  background: rgba(0, 168, 204, 0.15);
  border-color: var(--primary-cyan);
  box-shadow: 0 0 12px rgba(0, 168, 204, 0.25);
}

.dock-item.active .dock-name {
  color: var(--primary-cyan);
  font-weight: 800;
}

.dock-icon {
  font-size: 1rem;
}

.dock-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
}

/* ==========================================================================
   SECTION 5: INSTANT COVERAGE CHECKER CARD
   ========================================================================== */

/* ==========================================================================
   SECTION 5: INSTANT COVERAGE CHECKER CARD
   ========================================================================== */
.section-availability {
  padding: 80px 0;
  background: #ffffff;
}

.availability-cta-card {
  background: linear-gradient(135deg, #182230 0%, #0d1522 100%);
  border-radius: 32px;
  padding: 50px 45px;
  border: 1.5px solid rgba(0, 168, 204, 0.3);
  box-shadow: 0 20px 50px rgba(13, 21, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.availability-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 168, 204, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.input-group-custom {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 6px 8px;
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease;
}

.input-group-custom:focus-within {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.25);
}

.form-control-custom {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 18px;
  width: 100%;
  outline: none;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-check-submit {
  background: var(--primary-cyan-gradient);
  color: #ffffff;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--cyan-glow);
  transition: var(--transition-bounce);
}

.btn-check-submit:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 168, 204, 0.4);
}

.form-feedback-msg {
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 12px;
}
.form-feedback-msg.success {
  background: rgba(39, 201, 63, 0.2);
  color: #4ade80;
  border: 1px solid rgba(39, 201, 63, 0.35);
}

/* ==========================================================================
   SECTION 6: NEXT-GEN PROFESSIONAL TELECOM FOOTER (REDESIGNED)
   ========================================================================== */
.main-footer-pro {
  background: #090e17;
  color: #94a3b8;
  position: relative;
  overflow: hidden;
}

/* Footer Top Interactive Connectivity Bar */
.footer-top-strip {
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  padding: 12px 0;
}

.footer-top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #cbd5e1;
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: liveDotBlink 1.4s infinite;
}

@keyframes liveDotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.footer-helpline-hub {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hub-label {
  color: #64748b;
  font-weight: 700;
  font-size: 0.8rem;
}

.hub-item-chip {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.hub-item-chip:hover {
  background: rgba(0, 168, 204, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

@media (max-width: 768px) {
  .footer-top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-helpline-hub {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* Main Footer Content */
.footer-main-content {
  background: #090e17;
  border-bottom: 1px solid #1e293b;
}

.footer-brand-cradle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.98);
  padding: 8px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.brand-footer-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.footer-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  font-size: 0.74rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
}

.footer-section-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary-cyan);
  border-radius: 999px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-nav-list li a:hover {
  color: var(--primary-cyan);
  transform: translateX(4px);
}

/* Customer Portal Card in Footer */
.footer-portal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.portal-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 14px;
}

.btn-quick-recharge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #008eb5 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 168, 204, 0.35);
  transition: all 0.3s ease;
}

.btn-quick-recharge:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, #d41c1f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 36, 39, 0.45);
}

.btn-quick-recharge .btn-arr {
  transition: transform 0.25s ease;
}

.btn-quick-recharge:hover .btn-arr {
  transform: translateX(4px);
}

.support-sla-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: #060a10;
}

.copyright-txt {
  font-size: 0.84rem;
  color: #64748b;
}

.legal-links-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .legal-links-wrap {
    justify-content: flex-end;
  }
}

.legal-links-wrap a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.25s ease;
}

.legal-links-wrap a:hover {
  color: var(--primary-cyan);
}

.legal-links-wrap span {
  color: #334155;
}

/* ==========================================================================
   SMOOTH ARRIVAL ANIMATIONS (ON PAGE LOAD)
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  animation: smoothArrival 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

.fade-in-scale {
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  animation: scaleArrival 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.card-delay-1 { animation-delay: 0.35s; }
.card-delay-2 { animation-delay: 0.5s; }
.card-delay-3 { animation-delay: 0.65s; }
.card-delay-4 { animation-delay: 0.8s; }

@keyframes smoothArrival {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleArrival {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */
@media (max-width: 1400px) {
  .card-top-left { left: 2%; top: 30%; width: 138px; min-height: 135px; }
  .card-bottom-left { left: 10%; top: 60%; width: 138px; min-height: 135px; }
  .card-top-right { right: 4%; top: 18%; width: 138px; min-height: 135px; }
  .card-bottom-right { right: 8%; top: 58%; width: 138px; min-height: 135px; }
}

@media (max-width: 1200px) {
  .card-top-left { left: 1%; top: 28%; width: 128px; min-height: 125px; padding: 12px 10px; }
  .card-bottom-left { left: 6%; top: 58%; width: 128px; min-height: 125px; padding: 12px 10px; }
  .card-top-right { right: 2%; top: 16%; width: 128px; min-height: 125px; padding: 12px 10px; }
  .card-bottom-right { right: 4%; top: 57%; width: 128px; min-height: 125px; padding: 12px 10px; }
  .floating-card-icon-wrap { width: 52px; height: 52px; }
  .floating-card-title { font-size: 0.82rem; }
}

@media (max-width: 991px) {
  .main-sticky-header {
    padding: 10px 0;
  }

  .brand-badge-cradle {
    padding: 6px 16px;
  }

  .brand-main-logo {
    height: 44px;
  }

  /* Focus the Wi-Fi wave icon in the background on tablet/mobile */
  .hero-bg-art {
    object-position: 70% 25%;
  }

  /* Clean top spacing on mobile */
  .hero-wrapper {
    padding: 15px 0 25px 0 !important;
    min-height: auto !important;
    justify-content: flex-start !important;
  }

  .hero-container {
    padding: 0 16px;
  }

  .hero-main-content {
    margin-top: 5px;
  }

  .hero-title {
    font-size: 2.35rem;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .availability-cta-card {
    padding: 35px 25px;
  }
}

@media (max-width: 576px) {
  .main-sticky-header {
    padding: 8px 0;
  }

  .brand-badge-cradle {
    padding: 5px 14px;
  }

  .brand-main-logo {
    height: 38px;
  }

  /* Center the Wi-Fi icon part prominently behind the heading on mobile (66% 26% user preferred) */
  .hero-bg-art {
    object-position: 66% 26%;
  }

  .hero-wrapper {
    padding: 10px 0 20px 0 !important;
  }

  .hero-title {
    font-size: 1.95rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 0.92rem;
    padding: 0 4px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 18px;
  }

  .btn-explore,
  .btn-check-availability {
    width: 100%;
    max-width: 290px;
    font-size: 0.98rem;
    padding: 12px 20px;
  }

  .floating-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .mobile-card {
    padding: 12px 8px;
    min-height: 105px;
    border-radius: 16px;
  }

  .mobile-card-icon-wrap {
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
  }

  .mobile-card-title {
    font-size: 0.78rem;
  }

  .hero-feature-pill {
    font-size: 0.78rem;
    padding: 9px 15px;
    text-align: center;
    gap: 6px;
  }

  .input-group-custom {
    flex-direction: column;
    border-radius: 20px;
    gap: 8px;
  }

  .btn-check-submit {
    width: 100%;
    justify-content: center;
  }
}
