/* =============================================
   OPTIHUB - CARNIVAL STYLE MAIN STYLESHEET
   ============================================= */

:root {
    --primary: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --secondary: #009688;
    --secondary-dark: #00796B;
    --accent: #FF6F00;
    --dark: #212121;
    --gray: #757575;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 0.85rem;
}
.top-bar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: rgba(255,255,255,0.8); margin: 0 10px; }
.top-bar a:hover { color: white; }

/* ===== HEADER ===== */
.site-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.8rem; font-weight: 800; }
.logo span { color: var(--primary); }
.logo i { color: var(--primary); }
.nav-links { display: flex; gap: 30px; list-style: none; font-weight: 500; }
.nav-links a { color: var(--dark); position: relative; }
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
    padding: 10px 28px; border-radius: 50px; font-weight: 600;
    border: none; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233,30,99,0.3); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,150,136,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-outline-white { background: transparent; border: 2px solid white; color: white; }
.btn-outline-white:hover { background: white; color: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #E65100; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,111,0,0.3); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; overflow: hidden; }
.slider-wrapper { position: relative; }
.main-slider { position: relative; }
.slide-item { position: relative; height: 600px; display: flex !important; align-items: center; justify-content: center; }
.slide-background {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center;
    background-repeat: no-repeat; z-index: 1;
}
.slide-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 2;
}
.slide-content {
    position: relative; z-index: 3; color: white;
    max-width: 700px; padding: 40px 0;
}
.slide-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.slide-title .highlight { color: #FFD54F; }
.slide-description { font-size: 1.2rem; opacity: 0.9; margin-bottom: 30px; max-width: 550px; }
.slide-btn { font-size: 1.1rem; padding: 16px 36px; }
.slide-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.slide-stats { display: flex; gap: 40px; margin-top: 20px; }
.slide-stats strong { font-size: 2rem; font-weight: 800; color: #FFD54F; }
.slide-stats span { font-size: 0.9rem; opacity: 0.7; }

/* Slick Slider Custom */
.slick-dots { bottom: 30px !important; z-index: 10; }
.slick-dots li button:before { font-size: 14px !important; color: white !important; opacity: 0.5 !important; }
.slick-dots li.slick-active button:before { opacity: 1 !important; color: var(--primary) !important; }
.slick-prev, .slick-next { z-index: 10; }
.slick-prev:before, .slick-next:before { font-size: 30px !important; color: var(--primary) !important; opacity: 0.7 !important; }
.slick-prev:hover:before, .slick-next:hover:before { opacity: 1 !important; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 15px; }
.section-title span { color: var(--primary); }
.section-sub { text-align: center; color: var(--gray); max-width: 700px; margin: 0 auto 50px; }

/* ===== WHY CHOOSE ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card {
    text-align: center; padding: 30px 20px;
    border-radius: var(--radius); border: 1px solid #eee;
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== PACKAGES ===== */
.packages-section { background: var(--light-bg); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.package-card {
    background: white; padding: 30px; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center; transition: var(--transition);
    border: 1px solid #eee; position: relative;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.package-card .speed { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.package-card .speed small { font-size: 1rem; font-weight: 400; color: var(--gray); }
.package-card .price { font-size: 2rem; font-weight: 700; color: var(--secondary); margin: 10px 0; }
.package-card .price small { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.package-card .package-features { list-style: none; margin: 15px 0; }
.package-card .package-features li { padding: 5px 0; }
.package-card .package-features i { color: var(--primary); margin-right: 8px; }
.package-card .btn { width: 100%; justify-content: center; margin-top: 15px; }
.package-card.popular { border-color: var(--primary); background: linear-gradient(145deg, #FCE4EC, white); }
.package-card .badge {
    background: var(--primary); color: white; padding: 4px 14px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    display: inline-block; margin-bottom: 10px;
}

/* ===== COVERAGE ===== */
.coverage-section { background: linear-gradient(135deg, var(--secondary), var(--primary-dark)); color: white; }
.coverage-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
.coverage-map {
    background: rgba(255,255,255,0.06); border-radius: var(--radius);
    padding: 40px; text-align: center; border: 1px solid rgba(255,255,255,0.08);
}
.coverage-map i { font-size: 6rem; color: #FFD54F; opacity: 0.6; }
.coverage-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.coverage-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.coverage-list i { color: #FFD54F; }

/* ===== TESTIMONIALS ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--light-bg); padding: 30px;
    border-radius: var(--radius); border: 1px solid #eee;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.testimonial-card .stars { color: #FFD54F; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; color: var(--gray); }
.testimonial-card h4 { margin-top: 16px; font-size: 1rem; }

/* ===== STATISTICS ===== */
.stats-section { background: var(--light-bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item strong { font-size: 3rem; font-weight: 800; display: block; color: var(--primary); }
.stat-item span { color: var(--gray); font-weight: 500; }

/* ===== FAQ ===== */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--light-bg); border-radius: var(--radius);
    border: 1px solid #eee; padding: 20px 24px;
    transition: var(--transition); cursor: pointer;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item h4 { display: flex; justify-content: space-between; font-weight: 600; }
.faq-item h4 i { transition: var(--transition); color: var(--primary); }
.faq-item.active h4 i { transform: rotate(180deg); }
.faq-item p { margin-top: 12px; color: var(--gray); display: none; }
.faq-item.active p { display: block; animation: fadeIn 0.3s ease; }

/* ===== CONTACT ===== */
.contact-section { background: var(--light-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
    padding: 14px 18px; border-radius: var(--radius);
    border: 1px solid #eee; font-family: inherit;
    transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(233,30,99,0.1);
}
.contact-form textarea { min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info i { font-size: 1.8rem; width: 40px; color: var(--primary); }
.contact-info div { display: flex; align-items: center; gap: 16px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col a { display: block; margin-bottom: 10px; }
.footer-col a:hover { color: white; transform: translateX(5px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 40px; padding-top: 24px;
    text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    z-index: 200; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08) rotate(5deg); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.fade-in { animation: fadeIn 0.6s ease; }
.slide-up { animation: slideInUp 0.6s ease; }
.zoom-in { animation: zoomIn 0.6s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .slide-item { height: 500px; }
    .slide-title { font-size: 2.8rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .coverage-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta .btn { display: none; }
    .hamburger { display: block; }
    .slide-item { height: 400px; }
    .slide-title { font-size: 2rem; }
    .slide-description { font-size: 1rem; }
    .slide-stats { gap: 20px; flex-wrap: wrap; }
    .slide-buttons { justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .coverage-list { grid-template-columns: 1fr; }
    .slick-prev:before, .slick-next:before { font-size: 20px !important; }
}
.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 20px;
    box-shadow: var(--shadow); gap: 15px;
    animation: slideInUp 0.3s ease;
}

/* ===== SELF CARE BUTTON ===== */
.top-bar-right .selfcare-btn {
    background: #FFD54F;
    color: #1a1a2e;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.top-bar-right .selfcare-btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}
.top-bar-right .selfcare-btn i {
    font-size: 1rem;
    color: #1a1a2e;
}

/* =============================================
   SLIDER SIZE FIX - ALL SLIDES SAME SIZE
   ============================================= */

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 600px;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.main-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.main-slider .slick-list,
.main-slider .slick-track {
    height: 100% !important;
}

.slide-item {
    position: relative;
    height: 600px !important;
    min-height: 600px !important;
    max-height: 600px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 700px;
    padding: 40px 0;
    width: 100%;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #FFD54F;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.slide-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}
.slide-title .highlight {
    color: #FFD54F;
}

.slide-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.slide-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}
.slide-stats strong {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD54F;
}
.slide-stats span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Slick Dots - Fixed */
.slick-dots {
    bottom: 30px !important;
    z-index: 10;
}
.slick-dots li button:before {
    font-size: 14px !important;
    color: white !important;
    opacity: 0.5 !important;
}
.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: var(--primary, #8C135F) !important;
}

/* Slick Arrows */
.slick-prev, .slick-next {
    z-index: 10;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
}
.slick-prev:hover, .slick-next:hover {
    background: rgba(255,255,255,0.2) !important;
}
.slick-prev { left: 20px !important; }
.slick-next { right: 20px !important; }
.slick-prev:before, .slick-next:before {
    font-size: 30px !important;
    color: white !important;
    opacity: 0.8 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slider { min-height: 500px; height: 500px; }
    .slide-item { height: 500px !important; min-height: 500px !important; max-height: 500px !important; }
    .slide-title { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .hero-slider { min-height: 450px; height: 450px; }
    .slide-item { height: 450px !important; min-height: 450px !important; max-height: 450px !important; }
    .slide-title { font-size: 2.2rem; }
    .slide-description { font-size: 1rem; }
    .slide-stats { gap: 20px; flex-wrap: wrap; }
    .slide-buttons { flex-direction: column; align-items: flex-start; }
    .slide-buttons .btn { width: 100%; justify-content: center; }
    .slick-prev, .slick-next { width: 35px !important; height: 35px !important; }
    .slick-prev:before, .slick-next:before { font-size: 20px !important; }
    .slick-prev { left: 10px !important; }
    .slick-next { right: 10px !important; }
}
@media (max-width: 480px) {
    .hero-slider { min-height: 400px; height: 400px; }
    .slide-item { height: 400px !important; min-height: 400px !important; max-height: 400px !important; }
    .slide-title { font-size: 1.8rem; }
    .slide-description { font-size: 0.9rem; }
    .slide-stats strong { font-size: 1.3rem; }
}

/* =============================================
   SPEED CALCULATOR - CARNIVAL STYLE
   ============================================= */

.internet-speed {
    background: #f5f5f5;
    padding: 80px 0;
}

.internet-speed .section-head {
    text-align: center;
    margin-bottom: 50px;
}

.internet-speed .heading {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    margin-bottom: 15px;
}

.internet-speed .heading span {
    color: #8C135F;
}

.internet-speed .sub-heading {
    font-size: 16px;
    line-height: 26px;
    color: #191A24;
    max-width: 700px;
    margin: 0 auto;
}

.bandwidth-calculator {
    max-width: 900px;
    margin: 0 auto;
}

.bandwidth-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bandwidth-box {
    background: #ffffff;
    border: 1px solid rgba(204, 203, 214, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.bandwidth-box:hover {
    border-color: #8C135F;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.bandwidth-box img {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
}

.bandwidth-box h4 {
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
    color: #191A24;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(204, 203, 214, 0.3);
}

.bandwidth-box .quantity-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    gap: 8px;
}

.bandwidth-box .quantity-box .minus,
.bandwidth-box .quantity-box .plus {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    color: #8C135F;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e0e9f5;
}

.bandwidth-box .quantity-box .minus:hover,
.bandwidth-box .quantity-box .plus:hover {
    background: #8C135F;
    color: #ffffff;
    border-color: #8C135F;
}

.bandwidth-box .quantity-box input.form-control {
    width: 50px;
    border: none;
    border-radius: 0;
    text-align: center;
    min-height: 36px;
    background: transparent;
    font-weight: 600;
    color: #191A24;
    font-size: 1rem;
    padding: 0;
}

.bandwidth-box .quantity-box input.form-control:focus {
    outline: none;
}

.bandwidth-calculator .btn {
    display: block;
    margin: 0 auto;
    min-width: 200px;
    background: #8C135F;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bandwidth-calculator .btn:hover {
    background: #65056F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(140, 19, 95, 0.3);
}

/* Result Modal */
.speed-result-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.speed-result-modal.show {
    display: flex;
}

.speed-result-modal .modal-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.speed-result-modal .modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #757575;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.speed-result-modal .modal-close:hover {
    color: #191A24;
}

.speed-result-modal .result-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.speed-result-modal .result-speed {
    font-size: 3.5rem;
    font-weight: 800;
    color: #8C135F;
}

.speed-result-modal .result-speed .unit {
    font-size: 1.5rem;
    font-weight: 600;
    color: #757575;
}

.speed-result-modal .result-details {
    color: #757575;
    margin: 15px 0 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.speed-result-modal .result-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.speed-result-modal .result-packages .pkg-item {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0e9f5;
}

.speed-result-modal .result-packages .pkg-item .pkg-speed {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8C135F;
}

.speed-result-modal .result-packages .pkg-item .pkg-price {
    font-size: 1rem;
    font-weight: 600;
    color: #009688;
}

.speed-result-modal .result-packages .pkg-item .pkg-label {
    font-size: 0.75rem;
    color: #757575;
}

.speed-result-modal .result-packages .pkg-item.popular {
    border-color: #8C135F;
    background: linear-gradient(145deg, #FCE4EC, #ffffff);
}

.speed-result-modal .btn-close-modal {
    background: #8C135F;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.speed-result-modal .btn-close-modal:hover {
    background: #65056F;
}

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

/* Responsive */
@media (max-width: 992px) {
    .bandwidth-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .internet-speed {
        padding: 50px 0;
    }
    
    .internet-speed .heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .bandwidth-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bandwidth-box {
        grid-template-columns: 60px 1fr;
        padding: 12px;
    }
    
    .bandwidth-box img {
        height: 60px;
    }
    
    .bandwidth-box h4 {
        font-size: 12px;
    }
    
    .bandwidth-calculator .btn {
        width: 100%;
        min-width: unset;
    }
    
    .speed-result-modal .result-packages {
        grid-template-columns: 1fr;
    }
    
    .speed-result-modal .result-speed {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .bandwidth-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bandwidth-box img {
        height: 50px;
        max-width: 80px;
        margin: 0 auto;
    }
    
    .bandwidth-box .quantity-box {
        justify-content: center;
    }
}