<style>
/* Modern Large Price Cards - Enhanced White Background Design */
.price-card {
    background: 
        /* Main gradient */
        linear-gradient(145deg, #ffffff 0%, #f8fafc 100%),
        /* Subtle radial glow */
        radial-gradient(circle at 20% 20%, rgba(255, 149, 0, 0.05) 0%, transparent 50%),
        /* Floating particles */
        radial-gradient(circle at 80% 80%, rgba(0, 47, 255, 0.03) 0%, transparent 50%),
        /* Top-left corner shine */
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
    border-radius: 28px;
    padding: 45px 35px;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.1), 
        0 12px 35px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff9500, #ffb347, #ff9500);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 2px 10px rgba(255, 149, 0, 0.3);
    z-index: 2;
}

.price-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 149, 0, 0.3), transparent);
    z-index: 2;
}

/* ✨ Floating Geometric Elements */
.price-card .bg-decoration {
    position: absolute;
    opacity: 0.06;
    z-index: 1;
}

.price-card .circle-1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), rgba(255, 181, 71, 0.1));
    top: 20px;
    left: 20px;
    animation: float 6s ease-in-out infinite;
}

.price-card .circle-2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 47, 255, 0.15), rgba(0, 81, 255, 0.08));
    bottom: 30px;
    right: 30px;
    animation: float 8s ease-in-out infinite reverse;
}

.price-card .triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(255, 149, 0, 0.12);
    top: 60px;
    right: 40px;
    animation: rotate 12s linear infinite;
}

.price-card .line-deco {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 47, 255, 0.2), transparent);
    top: 15%;
    left: 10%;
    width: 60px;
    transform: rotate(-15deg);
    animation: slide 4s ease-in-out infinite;
}

/* Hover Enhancement */
.price-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.18), 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 149, 0, 0.15);
    border: 1px solid rgba(255, 149, 0, 0.25);
}

.price-card:hover .bg-decoration {
    opacity: 0.12;
}

.price-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.price-card h1 {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.price-card h5:nth-of-type(2) {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 3;
}

.price-card h5:nth-of-type(3) {
    font-size: 15px;
    color: #475569;
    font-weight: 600;
    margin: 24px 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.price-card h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff9500, #ff5100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    text-shadow: none;
    z-index: 3;
}

.price-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #002fff 0%, #002fff 50%, #002fff 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 30px rgba(255, 149, 0, 0.35),
        0 4px 12px rgba(255, 149, 0, 0.2);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    z-index: 3;
}

.price-card a::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;
}

.price-card a:hover::before {
    left: 100%;
}

.price-card a:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 40px rgba(255, 149, 0, 0.45),
        0 8px 20px rgba(255, 149, 0, 0.3);
    background: linear-gradient(135deg, #002fff 0%, #002fff 50%, #002fff 100%);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slide {
    0%, 100% { transform: translateX(0) rotate(-15deg); }
    50% { transform: translateX(20px) rotate(-15deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-card {
        height: 420px;
        padding: 35px 25px;
        min-width: 280px;
        border-radius: 24px;
    }
    
    .price-card h1 { font-size: 48px; }
    .price-card h2 { font-size: 38px; }
    .price-card a { padding: 16px 35px; font-size: 15px; }
    
    .price-card .circle-1 { width: 60px; height: 60px; }
    .price-card .circle-2 { width: 30px; height: 30px; }
}

@media (max-width: 480px) {
    .price-card {
        height: 400px;
        padding: 30px 20px;
        min-width: 260px;
        border-radius: 20px;
    }
    
    .price-card h1 { font-size: 44px; }
    .price-card h2 { font-size: 34px; }
    
    .price-card .circle-1 { width: 50px; height: 50px; }
    .price-card .circle-2 { width: 25px; height: 25px; }
}

/* Swiper Enhancements */
.swiper { padding-bottom: 60px !important; }

.swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: rgba(255, 149, 0, 0.5) !important;
    opacity: 1;
    border-radius: 50%;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #0026ff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.4) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #0051ff !important;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px !important;
    font-weight: 600 !important;
}
</style>
<style>
/* 🎬 CATV PREMIUM DESIGN */
.catv-card {
    background: 
        linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%),
        radial-gradient(circle at 30% 70%, rgba(0, 119, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 149, 0, 0.06) 0%, transparent 50%);
    border: 1px solid rgba(0, 119, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.catv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077ff, #00b0ff, #0077ff);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 2px 8px rgba(0, 119, 255, 0.4);
}

.catv-deco {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.tv-screen {
    width: 90px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0.3) 100%);
    border-radius: 8px;
    top: 30px;
    left: 30px;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.2);
    animation: tv-glow 3s ease-in-out infinite alternate;
}

.signal-wave {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,119,255,0.6), transparent);
    width: 80px;
    top: 55px;
    left: 45px;
    animation: wave 2s linear infinite;
}

.wifi-arc {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0,119,255,0.4);
    border-radius: 50%;
    bottom: 40px;
    right: 40px;
    animation: wifi-pulse 4s ease-in-out infinite;
}

.wifi-arc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0,119,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wifi-pulse 4s ease-in-out infinite 0.5s;
}

.wifi-arc::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0,119,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wifi-pulse 4s ease-in-out infinite 1s;
}

.star-1, .star-2 {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #ffd700 20%, transparent 60%);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 2s ease-in-out infinite alternate;
}

.star-1 {
    top: 15px;
    right: 50px;
}

.star-2 {
    bottom: 20px;
    left: 45px;
    animation-delay: 1s;
}

.glow-ring {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,149,0,0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-pulse 5s ease-in-out infinite;
}

/* CATV Animations */
@keyframes tv-glow {
    0% { box-shadow: inset 0 2px 8px rgba(0,0,0,0.2); }
    100% { box-shadow: inset 0 2px 12px rgba(0,119,255,0.3); }
}

@keyframes wave {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(60px); opacity: 0; }
}

@keyframes wifi-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

@keyframes ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
}

/* Hover Enhancement */
.catv-card:hover .catv-deco {
    opacity: 0.2;
}

.catv-card:hover .tv-screen {
    animation-duration: 1.5s;
}
</style>
/* Footer Section Styles */
.footer-section {
  margin-top: 80px;
}

.payments-center {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}

/* Swiper Area in Footer */
.swiper-area {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,255,0.98) 100%);
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}

.swiper-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
}

.swiper-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.swiper-subtitle {
  font-size: 1.1rem;
  color: #2c3e50;
  opacity: 0.8;
  margin-bottom: 20px;
}

.swiper-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  border-radius: 2px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(255,107,53,0.3);
}

/* Footer Social Icons */
.social-network li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-network li a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.icoFacebook { background: #3b5998; }
.icoYoutube { background: #ff0000; }
.icoInstagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.icoSpeedtest { background: #00d4aa; }

/* Responsive */
@media (max-width: 768px) {
  .swiper-area {
    padding: 30px 20px;
    margin: 20px 0;
  }
  
  .swiper-title {
    font-size: 1.6rem;
  }
}