/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.content-container {
    background-color: white;
    width: 100%;
    max-width: 1200px; 
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.top-header, .main-nav {
    background-color: white; /* Mantener blanco */
}

.main-content {
    padding: 20px;
}

/* Barra superior */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e1e1e1;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

/* Categorías principales */
.main-categories {
    display: flex;
    gap: 20px;
}

.category-link {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.category-link:hover {
    color: #0078d4;
}

/* Elementos del lado derecho */
.location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.location i {
    font-size: 12px;
}

.separator {
    height: 20px;
    width: 1px;
    background-color: #ccc;
    margin: 0 15px;
}

.external-links {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.external-link {
    text-decoration: none;
    color: #333;
}

.external-link:hover {
    text-decoration: underline;
}

/* Botón de login */
.login-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 15px;
    font-size: 16px;
    color: #333;
    padding: 5px 10px;
}

.login-btn:hover {
    color: #0078d4;
}

/* Navegación principal */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.brand {
    display: flex;
    align-items: center;
    height: 100%; 
}

.brand img {
    max-height: 40px; 
    width: auto; 
    object-fit: contain; 
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-linkS {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 16px;
}

.nav-linkS:hover {
    color: #00d4b1;
}

.nav-linkO {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 16px;
}

.nav-linkO:hover {
    color: #fb8c00;
}

.nav-linkY {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 16px;
}

.nav-linkY:hover {
    color: #fdd835;
}

.nav-linkV {
    text-decoration: none;
    color: #0a0a0a;
    font-size: 16px;
}

.nav-linkV:hover {
    color: #e91e63;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.nav-link:hover {
    color: #0647d1;
}

.fa-tv {
    color: #00d4b1;
}
.fa-wifi {
    color: #fb8c00;
}
.fa-phone {
    color: #fdd835;
}
.nav-linkV + .fa-mobile-alt {
    color: #e91e63;
}

.location-dropdown {
            position: relative;
            display: inline-block;
        }

        .location-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            padding: 5px 10px;
            color: #333;
        }

        .location-btn i {
            transition: transform 0.3s;
        }

        .location-dropdown.active .location-btn i {
            transform: rotate(180deg);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 120px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 4px;
            top: 100%;
            left: 0;
        }

        .location-dropdown.active .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            color: #333;
            padding: 8px 12px;
            text-decoration: none;
            display: block;
            font-size: 14px;
        }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

/* Contenedor de planes */
        .plans-main {
            display: flex;
            align-items: center;
            padding: 5px;
            background-color: #ffffff;
        }

        .plans-container {
            display: none;
            max-width: 1200px;
            margin: 30px auto;
            padding: 30px;
            background-color: #f9f9f9;
            border-radius: 8px;
        }

        .plans-container.active {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .plans-container h3 {
            text-align: center;
            color: #010318;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .clip-logo {
            display: block;
            margin: 16px auto 0 auto;
            max-width: 120px;
            height: auto;
            width: auto;
            clear: both;
            float: none;
        }

/* Estilo de los recuadros de planes */
        .plan-box {
            background-color: rgb(22, 22, 22);
            border-radius: 10px;
            padding: 20px 20px 20px 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .plan-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-color: rgba(0, 0, 0, 0.1);
        }

        .plan-box img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border: 1px solid #eee;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .plan-img-esquina {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%; 
            height: 169px;
            z-index: 1;
            pointer-events: none; /* Para que no tape los clics */
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
        }

        .plan-img-esquina img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 10px 10px 0; /* Solo redondea esquinas derechas */
            box-shadow: none;
        }

        .plan-box .badge {
            position: absolute;
            top: -3px;
            right: 20px;
            background-color: #e53935;
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 14px;
        }

        .plan-box h2 {
            font-size: 20px;
            color: #e1e1e1;
            margin: 10px 0;
        }

        .plan-features {
            margin: 15px 0;
        }

        .plan-feature {
            display: flex;
            align-items: center;
            margin: 8px 0;
            color: #e1e1e1;
        }

        .plan-feature i {
            margin-right: 10px;
            color: #0078d4;
        }

        .plan-price {
            font-size: 18px;
            margin: 15px 0;
            color: #e1e1e1;
        }

        .plan-price strong {
            font-size: 24px;
            color: #e53935;
        }

        .divider {
            height: 1px;
            background-color: #ddd;
            margin: 15px 0;
        }

        .validity {
            font-size: 12px;
            color: #e1e1e1;
            text-align: center;
            margin: 10px 0;
        }

.featured-promo {
  background: #000;
  color: rgb(0, 0, 0);
  padding: 40px 20px;
  text-align: center;
}

.featured-promo h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff;
}

.promo-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; 
  margin-top: 30px;
}

.promo-card {
  border-radius: 15px;
  width: 300px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

@keyframes gradientBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.promo-card.multicolor {
  background: linear-gradient(135deg, aqua, orange, yellow, rgb(192, 36, 171)); 
    background-size: 600% 600%;
  animation: gradientBorder 8s ease infinite;
  padding: 3px; /* grosor del borde */
  border-radius: 15px;
  overflow: hidden;
}

.promo-content {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.promo-top {
  background-color: #000;
  color: white;
  padding: 20px;
  text-align: center;
}

.promo-header h3 {
  font-size: 24px;
  color: #c20505;
  margin: 0;
}

.promo-header span {
  font-size: 14px;
  color: #ccc;
}

.promo-bottom {
  background-color: #fff;
  padding: 20px;
  text-align: left;
}

.promo-body ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.promo-body li {
  margin-bottom: 8px;
  color: #333;
}

.promo-price {
  font-size: 24px;
  font-weight: bold;
  color: #faf6f9;
  margin: 15px 0;
}

.promo-btn {
  background-color: #0071e3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.promo-btn:hover {
  background-color: #005bb5;
}


/* Botón flotante de ayuda */
.floating-help {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #0071e3, #00a1ff);
    color: white;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.floating-help:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-help i {
    font-size: 28px;
}

/* Contenedor de opciones - Círculo completo */
.help-options {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 999;
    pointer-events: none;
}

/* Opciones individuales */
.help-option {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #333;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    border: 2px solid #f5f5f5;
}

.help-option i {
    font-size: 24px;
    transition: transform 0.3s;
}

/* WhatsApp o */
.help-option.whatsapp {
    background: #25D366;
    color: white;
}

/* Posiciones en círculo completo (radio de 120px) */
.floating-help.active + .help-options .help-option {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.floating-help.active + .help-options .help-option:nth-child(1) {
    transform: translate(-60px, -100px) scale(1); /* Chat - Superior izquierdo */
}
.floating-help.active + .help-options .help-option:nth-child(2) {
    transform: translate(-10px, -120px) scale(1); /* Teléfono - Izquierda */
}
.floating-help.active + .help-options .help-option:nth-child(3) {
    transform: translate(-80px, -60px) scale(1);   /* Email - Inferior izquierdo */
}
.floating-help.active + .help-options .help-option:nth-child(4) {
    transform: translate(-85px, -15px) scale(1);   /* FAQs - Inferior derecho */
}
.floating-help.active + .help-options .help-option:nth-child(5) {
    transform: translate(-70px, 40px) scale(1);    /* WhatsApp - Derecha */
}

/* Tooltips estilo burbuja */
.help-option::after {
    content: attr(data-tooltip);
    position: absolute;
    background: rgba(51, 51, 51, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    font-weight: 500;
}

.help-option:hover::after {
    opacity: 1;
    transform: translateY(-10px);
}

/* Posición de tooltips según ubicación */
.help-option:nth-child(1)::after { top: -50px; left: 50%; transform: translateX(-50%); }
.help-option:nth-child(2)::after { top: 50%; left: -140px; transform: translateY(-50%); }
.help-option:nth-child(3)::after { bottom: -50px; left: 50%; transform: translateX(-50%); }
.help-option:nth-child(4)::after { top: 50%; right: -140px; transform: translateY(-50%); }
.help-option:nth-child(5)::after { top: -50px; left: 50%; transform: translateX(-50%); }

/* Animación de aparición escalonada */
.floating-help.active + .help-options .help-option {
    transition-delay: calc(0.1s * var(--i));
}
.help-option:nth-child(1) { --i: 1; }
.help-option:nth-child(2) { --i: 2; }
.help-option:nth-child(3) { --i: 3; }
.help-option:nth-child(4) { --i: 4; }
.help-option:nth-child(5) { --i: 5; }

.faq-panel {
  position: fixed;
  bottom: 110px;
  right: 30px;
  background: white;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  width: 320px;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 2000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: none; /* Oculto por defecto */
}

.faq-panel h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f0f0f0;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question .arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  margin-top: 8px;
  display: none;
}

.faq-answer iframe {
  border-radius: 8px;
}

/* Estilos del banner rotativo */
        .promo-banner {
            width: 100%;
            max-width: 1555px;
            height: 500px;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 20px auto;
            border: 1px solid #eee;
        }

        .banner-slides {
            display: flex;
            transition: transform 0.5s ease;
            width: 100%;
            height: 100%;
        }

        .banner-slide {
            min-width: 100%;
            position: relative;
            height: 100%;
        }

        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            object-position: center; 
            display: block;
        }

        
        .banner-content {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            max-width: 50%;
        }
        
        .banner-content h2 {
            font-size: 24px;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }
        
        .banner-tag {
            background-color: white;
            color: black;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            margin-left: 10px;
        }
        
        .banner-text {
            font-size: 16px;
            margin: 10px 0;
        }
        
        .banner-button {
            background-color: #0071e3;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .banner-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .banner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
        }
        
        .banner-dot.active {
            background-color: white;
        }
        
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .banner-arrow.prev {
            left: 20px;
        }
        
        .banner-arrow.next {
            right: 20px;
        }

        .mobile-banner {
  display: none;
}

/* En celulares (ancho menor a 768px) */
@media screen and (max-width: 768px) {
    .promo-banner {
    display: none !important;
  }
  .mobile-banner {
    display: block;
    width: 100%;
    height: auto; 
    overflow: hidden;
    border-radius: 12px;
    position: relative;
  }

  .mobile-banner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-banner video,
  .mobile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-pagination {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    text-align: center;
  }

  .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.6;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
  }
}

/* Estilos para los submenús */
.plans-main {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #ffffff;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: rgba(255, 244, 244, 0.829);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 10px;
    border: 1px solid #eeeeee0e;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.submenu-content {
    padding: 15px;
}

.submenu h4 {
    color: #e53935;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu li {
    padding: 5px 0;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

/* Mostrar submenu al hover */
.plans-main:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .submenu {
        width: 200px;
        left: -50px;
    }
    
    .nav-links {
        flex-wrap: wrap;
    }
    
    .plans-main {
        margin-bottom: 10px;
    }
}

.city-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-modal-content {
    background-color: white;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease;
}

.city-modal-content h2 {
    margin-top: 0;
    color: #e53935;
}

.city-select {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.city-button {
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

.city-button:hover {
    background-color: #005bb5;
}

.city-logo {
    width: 80px;
    margin-bottom: 15px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos del panel de formulario de llamada */
.call-form-panel {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 10000;
    display: none; /* Se mostrará al hacer clic */
    animation: fadeSlideIn 0.4s ease;
}

.call-form-panel h3 {
    margin-top: 0;
    color: #1a1a1a;
    font-size: 18px;
    text-align: center;
}

.call-form-panel h3 strong {
    font-weight: bold;
    color: #000;
}

.call-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-form-panel input {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.call-form-panel small {
    font-size: 11px;
    color: #777;
    text-align: center;
}

.call-form-panel button {
    padding: 10px;
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

.call-form-panel button:hover {
    background-color: #005bb5;
}

.llamanos-directo {
    text-align: center;
    font-size: 13px;
    color: #444;
    margin-top: 10px;
}

.llamanos-directo strong {
    font-size: 18px;
    color: #000;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-button {
    width: 100%;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

.whatsapp-confirm-modal {
    position: fixed;
    z-index: 11000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

.whatsapp-confirm-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: fadeSlideIn 0.3s ease;
}

.whatsapp-confirm-content h3 {
    margin-top: 0;
    color: #e53935;
}

.whatsapp-confirm-content p {
    font-size: 15px;
    color: #444;
    margin: 15px 0;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.modal-buttons button {
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.modal-buttons button:first-child {
    background-color: #25D366;
    color: white;
}

.modal-buttons button:last-child {
    background-color: #ccc;
    color: black;
}

.build-package-modal {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
}

.build-package-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeSlideIn 0.4s ease;
}

.build-package-content h2 {
    margin-top: 0;
    color: #e53935;
    text-align: center;
}

.build-package-content label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.build-package-content select,
.build-package-content input[type="checkbox"],
.build-package-content input[type="radio"] {
    margin: 5px 0;
}

.tv-options, .streaming-options {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.confirm-package {
    padding: 10px;
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.confirm-package:hover {
    background-color: #005bb5;
}

.package-summary {
    margin-top: 10px;
    font-size: 14px;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 10px;
    display: none;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
}

.custom-footer {
  background-color: #111;
  color: white;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-contact {
  text-align: center;
  margin-bottom: 20px;
}

.footer-contact-links a {
  color: #25D366;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

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

.footer-section {
  flex: 1 1 200px;
}

.footer-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}

.footer-toggle i {
  float: right;
}

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

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.benefits-section {
  background: linear-gradient(to bottom, #ffffff, #f5f6f8);
  padding: 50px 20px;
  text-align: center;
}

.benefits-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.benefits-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 20px;
  justify-content: center;
  scroll-snap-type: x mandatory;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  padding: 20px;
  min-width: 300px;
  max-width: 320px;
  scroll-snap-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.benefit-card img {
  max-width: 180px;
  height: auto;
  margin-bottom: 5px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 5px 0;
  color: #000;
}

.benefit-card p {
  font-size: 14px;
  color: #444;
  text-align: left;
  margin: 0;
}

.benefit-card small {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
  display: block;
  text-align: left;
  width: 100%;
}

.benefits-action {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.benefit-cta {
  background-color: #000;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 2px 10px 4px rgba(87, 119, 156, 0.25);
  transition: background 0.3s;
}

.benefit-cta:hover {
  background-color: #333;
}

.hover-image-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.hover-link {
  color: #007bff;
  text-decoration: underline;
}

.hover-image {
  display: none;
  position: right;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  z-index: 1000;
}

.hover-image-container:hover .hover-image {
  display: block;
}

@media (max-width: 768px) {
  footer .footer-section {
    width: 100% !important;
    text-align: center;
    margin-bottom: 20px;
  }

  footer .footer-columns {
    flex-direction: column !important;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .floating-help {
    bottom: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
  }

  .floating-help i {
    font-size: 24px;
  }

  .help-options {
    bottom: 15px;
    right: 15px;
  }

  .faq-panel {
    width: 90%;
    right: 5%;
    bottom: 100px;
  }
}

body, html {
  background-color: #000000 !important;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: white; 
}

.menu-container {
  position: relative;
  display: inline-block;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #6d6d6d;
}

.whatsapp-btn {
  position: absolute;
  top: 20px;               
  left: 20px;              
  background-color: #00bb2d;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 10;
  transition: background 0.3s;
}
.whatsapp-btn:hover {
  background-color: #009624;
}