/* --- CSS Variables for Easy Theme Management --- */
:root {
    --primary-color: #007BFF;
    --secondary-color: #0056b3;
    --accent-color: #28a745;
    --dark-color: #1a1a1a;
    --light-color: #f4f7f6;
    --text-color: #333;
    --text-light: #777;
    --font-family: 'Inter', sans-serif;
}

/* --- Basic Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 { font-size: 2.5rem; text-align: center; }
h3 { font-size: 1.5rem; }

section {
    padding: 80px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.2);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #218838;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- Header --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}
.main-nav ul li { position: relative; }
.live-tv-link { border: 1px solid rgba(34,211,238,0.45); border-radius: 8px; padding: 6px 12px; box-shadow: 0 0 10px rgba(34,211,238,0.2); transition: box-shadow 0.25s ease, border-color 0.25s ease; }
.live-tv-link:hover { border-color: rgba(34,211,238,0.8); box-shadow: 0 0 16px rgba(34,211,238,0.35); }
.dropdown > a { position: relative; padding-right: 20px; }
.dropdown > a::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--text-light); transition: transform 0.25s ease, color 0.25s ease; }
.dropdown:hover > a::after { transform: translateY(-50%) rotate(180deg); color: var(--accent-color); }
.dropdown .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: rgba(11,15,25,0.95); border: 1px solid rgba(168,85,247,0.25); border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); min-width: 200px; padding: 10px 0; z-index: 1001; }
.dropdown .dropdown-menu { opacity: 0; transform: translateY(8px) scale(0.98); transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.dropdown:hover .dropdown-menu { display: block; opacity: 1; transform: none; box-shadow: 0 12px 24px rgba(168,85,247,0.25); }
.dropdown .dropdown-menu li a { display: block; padding: 10px 16px; color: var(--text-color); }
.dropdown .dropdown-menu li a:hover { color: var(--accent-color); text-shadow: 0 0 8px rgba(34,211,238,0.6); }
.dropdown .dropdown-menu::before { content: ""; position: absolute; inset: -2px; border-radius: 12px; background: linear-gradient(90deg, #ff005d, #00ffa3, #00b3ff, #a855f7, #22d3ee); filter: blur(8px); opacity: 0.2; z-index: -1; animation: rgbFlow 4s linear infinite; }

.hamburger { display: none; }

/* --- Hero Section --- */
/* --- Hero Slider Section --- */
.hero-slider-section {
    position: relative;
}

.hero-slider {
    width: 100%;
    height: 90vh; /* Full viewport height */
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay for better text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.7), rgba(0, 86, 179, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: #ffd700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-content .availability-checker {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-content .availability-checker input {
    flex-grow: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
}

.hero-content .availability-checker button {
    border-radius: 0;
    padding: 18px 30px;
}

/* --- Swiper Pagination Styling for Hero --- */
.hero-slider .swiper-pagination {
    position: absolute;
    bottom: 30px !important; /* Position dots at the bottom */
}

.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* --- Responsive Design for Hero Slider --- */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh; /* Make it taller on mobile */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .availability-checker {
        flex-direction: column;
        border-radius: 10px;
    }
    .hero-content .availability-checker button {
        border-radius: 10px;
    }
}
/* --- How It Works Section --- */
.how-it-works { background-color: var(--light-color); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}
.step h3 { font-size: 1.3rem; }
.step p { color: var(--text-light); }

/* --- Stats Bar --- */
.stats-bar {
    background-color: var(--dark-color);
    color: #fff;
    padding: 60px 0;
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* --- Packages Section --- */
.packages { background-color: var(--light-color); }
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.package-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.package-card.featured {
    border: 2px solid var(--primary-color);
}
.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.package-description {
    color: var(--text-light);
    margin-bottom: 20px;
}
.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}
.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}
.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}
.package-card ul li {
    padding: 10px 0;
    color: var(--text-light);
}
.package-card ul li i.fa-check {
    color: var(--accent-color);
    margin-right: 10px;
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: #fff;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}
.stars { color: #ffd700; margin-bottom: 15px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; }
.author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author img { border-radius: 50%; }
.author h4 { margin: 0; font-size: 1rem; }
.author p { margin: 0; color: var(--text-light); font-size: 0.9rem; }

/* --- FAQ Section --- */
.faq { background-color: var(--light-color); }
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}
.faq-question.active::after { content: '-'; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}
.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-light);
}

/* --- Contact Section --- */
.contact { background-color: #fff; }
.contact-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-top: 50px;
}
.contact-info { flex: 1; }
.contact-form { flex: 1; }
.contact-info h3 { font-size: 1.8rem; }
.contact-info p { color: var(--text-light); margin-bottom: 30px; }
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.info-item i {
    font-size: 1.1rem;
    color: var(--accent-color);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.info-item p { margin: 0; }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 1rem;
}
.contact-form textarea { resize: vertical; }

/* --- Footer --- */
.main-footer {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about h3 {
    color: var(--text-color);
    margin-bottom: 15px;
}
.footer-about p {
    margin-bottom: 20px;
}
.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.social-links a:hover { color: var(--primary-color); }
.footer-links h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}
.footer-links ul li a:hover { color: var(--primary-color); }
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Scroll to Top Button --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    background-color: var(--secondary-color);
}

#bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

#particlesToggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 14px;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
#particlesToggle[aria-pressed="true"] { opacity: 1; }
#particlesToggle[aria-pressed="false"] { opacity: 0.8; }


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--dark-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .main-nav.active ul {
        flex-direction: column;
        padding: 20px;
    }
    .main-nav.active .dropdown-menu { display: block; position: static; background: rgba(11,15,25,0.95); border: 1px solid rgba(168,85,247,0.25); box-shadow: none; border-radius: 8px; }
}
    
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .availability-checker { flex-direction: column; border-radius: 10px; }
    .availability-checker button { border-radius: 10px; }
    .contact-wrapper { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
}


/* --- Services & Solutions Section (Updated with Advanced Hover) --- */
.services-solutions {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* The main card container */
.service-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    cursor: pointer;
    /* --- Key properties for the layered effect --- */
    position: relative; /* Needed for positioning the ::before pseudo-element */
    overflow: hidden;   /* Hides the parts of the background that rotate out of bounds */
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth transition for lift and shadow */
}

/* The background layer that will rotate */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f4ff, #e6efff); /* A subtle gradient background */
    z-index: 0; /* Places it behind the content */
    transition: transform 0.5s ease-out; /* Smooth transition for the rotation */
    transform-origin: center; /* Ensures it rotates from the center */
}

/* The content of the card (icon, text) */
.service-card > * { /* Selects all direct children */
    position: relative; /* Places them on top of the ::before pseudo-element */
    z-index: 1;
}

/* --- The Hover State --- */
.service-card:hover {
    transform: translateY(-10px); /* Lifts the entire card */
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15); /* Adds a nice shadow */
}

.service-card:hover::before {
    transform: rotate(4deg) scale(1.05); /* Rotates and slightly scales the background */
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1); /* Makes the icon slightly bigger on hover */
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.4s ease;
}

.service-card:hover h3 {
    color: var(--primary-color); /* Changes title color on hover */
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Responsive Design for the Services Grid --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile phones */
    }
    .service-card {
        padding: 30px 20px;
    }
}


/* --- Packages Slider Section --- */
.packages-slider-section {
    background-color: var(--light-color);
    padding: 80px 0;
    overflow: hidden; /* Hides the scrollbar */
}

.packages-slider-section .container {
    padding-bottom: 40px;
}

.packages-slider .swiper-wrapper {
    align-items: stretch;
}

/* --- The Swiper Container --- */
.packages-slider {
    padding: 0 60px; /* Gives space for navigation arrows */
    overflow: visible;
}

.packages-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

/* --- The New Package Card Design --- */
.package-card-slider {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-card-slider::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.package-card-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: #fff;
    z-index: -1;
}

.package-card-slider:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.25);
}

.package-card-slider:hover::before {
    opacity: 1;
}

.package-card-slider.featured {
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card-slider h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.package-card-slider .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-card-slider .price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.package-card-slider .speed {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: #f0f4ff;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.package-card-slider .features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.package-card-slider .features-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.package-card-slider .features-list li i.fa-check {
    color: var(--accent-color);
    margin-right: 10px;
    width: 16px;
}

/* --- Swiper Navigation & Pagination Styling --- */
.packages-slider .swiper-button-next,
.packages-slider .swiper-button-prev {
    color: var(--primary-color);
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.packages-slider .swiper-button-next::after,
.packages-slider .swiper-button-prev::after {
    font-size: 18px;
}

.packages-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

:root {
    --primary-color: #a855f7;
    --secondary-color: #6b21a8;
    --accent-color: #22d3ee;
    --dark-color: #0b0f19;
    --light-color: #111827;
    --text-color: #e5e7eb;
    --text-light: #94a3b8;
    --font-family: 'Oxanium', 'Inter', sans-serif;
    --topbar-height: 42px;
}

body {
    color: var(--text-color);
    background: radial-gradient(ellipse at top, #0b0f19 0%, #111827 100%);
    background-attachment: fixed;
}

.main-header {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(168,85,247,0.15);
    border-bottom: 1px solid rgba(168,85,247,0.25);
    top: var(--topbar-height);
}
.logo { color: var(--accent-color); text-transform: uppercase; letter-spacing: 0.5px; }
.main-nav a { color: var(--text-color); font-weight: 600; transition: color 0.3s ease, text-shadow 0.3s ease; }
.main-nav a:hover { color: var(--accent-color); text-shadow: 0 0 10px rgba(34, 211, 238, 0.6); }
.hamburger span { background-color: #e5e7eb; }

.btn-primary { background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); color: #0b0f19; box-shadow: 0 0 12px rgba(168, 85, 247, 0.6), 0 0 30px rgba(34, 211, 238, 0.35); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 18px rgba(168, 85, 247, 0.9), 0 0 36px rgba(34, 211, 238, 0.5); }
.btn-secondary { background: linear-gradient(90deg, var(--accent-color), #06b6d4); color: #0b0f19; box-shadow: 0 0 12px rgba(34, 211, 238, 0.6); }
.btn-secondary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 18px rgba(34, 211, 238, 0.9); }
.btn-outline { border-color: var(--accent-color); color: var(--accent-color); }
.btn-outline:hover { background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); color: #0b0f19; }

.hero-slide::before { background: linear-gradient(180deg, rgba(8, 12, 24, 0.65), rgba(11, 17, 39, 0.65)), linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(107, 33, 168, 0.30)); }
.hero-content h1 span { color: var(--accent-color); text-shadow: 0 0 18px rgba(34, 211, 238, 0.6); }
.hero-content .availability-checker { box-shadow: 0 0 20px rgba(168,85,247,0.35); }

.step-number { background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); color: #0b0f19; box-shadow: 0 0 12px rgba(168,85,247,0.6); }

.stat-item h3 { color: var(--accent-color); text-shadow: 0 0 12px rgba(34,211,238,0.5); }

.package-card { background: #0f172a; border: 1px solid rgba(168,85,247,0.25); box-shadow: 0 5px 25px rgba(168,85,247,0.15); }
.package-card.featured { box-shadow: 0 0 18px rgba(168,85,247,0.35); }
.price { color: var(--accent-color); text-shadow: 0 0 12px rgba(34,211,238,0.45); }

.testimonials { background-color: var(--dark-color); }
.testimonial-card { background-color: #0f172a; box-shadow: 0 5px 25px rgba(168,85,247,0.12); }

.testimonials-slider { padding: 20px 0; }
.testimonials-slider .swiper-slide { display: flex; justify-content: center; align-items: stretch; height: auto; }
.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev { color: var(--accent-color); background: transparent; width: 45px; height: 45px; border-radius: 50%; box-shadow: 0 0 12px rgba(34,211,238,0.35); border: 1px solid rgba(34,211,238,0.45); backdrop-filter: blur(4px); }
.testimonials-slider .swiper-pagination-bullet-active { background-color: var(--accent-color); }
.testimonial-card { max-width: 420px; }
.author .avatar { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #0f172a; border: 1px solid rgba(168,85,247,0.35); box-shadow: 0 0 12px rgba(168,85,247,0.25); }
.author .avatar i { color: var(--accent-color); font-size: 1.4rem; }

.faq { background-color: var(--light-color); }
.faq-item { background: #0f172a; border: 1px solid rgba(168,85,247,0.25); box-shadow: 0 2px 10px rgba(168,85,247,0.15); }
.faq-question::after { color: var(--accent-color); }
.faq-question { color: var(--accent-color); }

.contact { background-color: var(--dark-color); }
.info-item i { color: var(--accent-color); }
.contact-form input, .contact-form textarea { background: #0f172a; color: var(--text-color); border: 1px solid #1f2937; }

.main-footer { color: #a3a3a3; }
.social-links a:hover { color: var(--accent-color); }

.scroll-to-top { background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); color: #0b0f19; box-shadow: 0 0 12px rgba(168,85,247,0.6); }

.services-solutions { background-color: var(--dark-color); }
.service-card { background-color: #0f172a; border: 1px solid rgba(168,85,247,0.25); }
.service-card::before { background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(34,211,238,0.12)); }
.service-card:hover { box-shadow: 0 0 24px rgba(168,85,247,0.35); }
.service-card i { color: var(--accent-color); text-shadow: 0 0 12px rgba(34,211,238,0.55); }
.service-card:hover i { color: var(--primary-color); text-shadow: 0 0 16px rgba(168,85,247,0.65); }
.service-card h3 { color: var(--text-color); font-weight: 700; }
.service-card:hover h3 { color: var(--accent-color); }

.packages-slider-section { background-color: var(--dark-color); }
.package-card-slider { background: #0f172a; border: 2px solid rgba(168,85,247,0.25); box-shadow: 0 5px 25px rgba(168,85,247,0.12); }
.package-card-slider::after { background: #0f172a; }
.package-card-slider:hover { box-shadow: 0 12px 35px rgba(168,85,247,0.25); }
.package-card-slider.featured { box-shadow: 0 0 18px rgba(168,85,247,0.35); }
.package-card-slider h3 { color: var(--text-color); }
.package-card-slider .price { color: var(--accent-color); text-shadow: 0 0 12px rgba(34,211,238,0.45); }
.package-card-slider .speed { color: var(--text-color); background-color: rgba(168,85,247,0.12); }
.packages-slider .swiper-button-next, .packages-slider .swiper-button-prev { color: var(--accent-color); background: transparent; box-shadow: 0 0 12px rgba(34,211,238,0.35); border: 1px solid rgba(34,211,238,0.45); backdrop-filter: blur(4px); }
.packages-slider .swiper-pagination-bullet-active { background-color: var(--accent-color); }

.topbar { position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-height); z-index: 1001; background: rgba(11,15,25,0.9); border-bottom: 1px solid rgba(168,85,247,0.25); backdrop-filter: blur(8px); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar-left .topbar-link { color: var(--text-color); text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.topbar-left .topbar-link:hover { color: var(--accent-color); text-shadow: 0 0 8px rgba(34,211,238,0.6); }
.topbar-center { flex: 1; margin: 0 16px; overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-content { display: inline-block; padding-left: 100%; color: transparent; background: linear-gradient(90deg, #ff005d, #00ffa3, #00b3ff, #a855f7, #22d3ee); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; animation: marqueeLeft 14s linear infinite, rgbFlow 6s linear infinite; font-weight: 700; }
@keyframes marqueeLeft { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.topbar-right .topbar-phone { color: transparent; background: linear-gradient(90deg, #ff005d, #00ffa3, #00b3ff, #a855f7, #22d3ee); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; font-weight: 800; text-decoration: none; animation: rgbFlow 6s linear infinite; display: inline-flex; align-items: center; gap: 8px; }
@keyframes rgbFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@media (max-width: 768px) { .topbar-center { display: none; } .topbar-left .topbar-link { font-size: 0.9rem; } .topbar-right .topbar-phone { font-size: 0.95rem; } }

.coverage { background-color: var(--dark-color); padding: 80px 0; }
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.coverage-card { background: #0f172a; border-radius: 16px; padding: 28px; position: relative; text-align: center; border: 1px solid rgba(168,85,247,0.35); box-shadow: 0 6px 24px rgba(168,85,247,0.15); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.coverage-card::before { content: ""; position: absolute; inset: -2px; border-radius: 18px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); opacity: 0.15; filter: blur(10px); transition: opacity 0.35s ease; z-index: -1; }
.coverage-card:hover { transform: translateY(-6px) rotateZ(-0.5deg); box-shadow: 0 0 26px rgba(168,85,247,0.35); }
.coverage-card:hover::before { opacity: 0.35; }
.coverage-card .icon { font-size: 2rem; color: var(--accent-color); margin-bottom: 12px; text-shadow: 0 0 12px rgba(34,211,238,0.6); }
.coverage-card h3 { color: var(--text-color); font-weight: 700; letter-spacing: 0.3px; }
@keyframes neonPulse { 0% { box-shadow: 0 0 12px rgba(168,85,247,0.35); } 50% { box-shadow: 0 0 22px rgba(34,211,238,0.45); } 100% { box-shadow: 0 0 12px rgba(168,85,247,0.35); } }
.coverage-card { animation: neonPulse 4s ease-in-out infinite; }
@media (max-width: 992px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .coverage-grid { grid-template-columns: 1fr; } }

.map-section { background-color: var(--dark-color); padding: 80px 0; }
.map-card { background: #0f172a; border-radius: 16px; padding: 12px; border: 1px solid rgba(168,85,247,0.35); box-shadow: 0 6px 24px rgba(168,85,247,0.15); }
.map-frame { border-radius: 12px; filter: saturate(1.1) contrast(1.05); }

.clients { background-color: var(--dark-color); padding: 80px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.client-card { background: #0f172a; border-radius: 16px; padding: 24px; position: relative; text-align: center; border: 1px solid rgba(168,85,247,0.35); box-shadow: 0 6px 24px rgba(168,85,247,0.15); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.client-card::before { content: ""; position: absolute; inset: -2px; border-radius: 18px; background: linear-gradient(135deg, var(--accent-color), var(--primary-color)); opacity: 0.2; filter: blur(10px); z-index: -1; animation: neonSweep 6s linear infinite; }
.client-card:hover { transform: translateY(-6px); box-shadow: 0 0 26px rgba(168,85,247,0.35); }
.client-card .icon { font-size: 1.8rem; color: var(--accent-color); margin-bottom: 10px; text-shadow: 0 0 12px rgba(34,211,238,0.6); }
.client-card h3 { color: var(--text-color); font-weight: 700; letter-spacing: 0.3px; }
@keyframes neonSweep { 0% { opacity: 0.15; } 50% { opacity: 0.35; } 100% { opacity: 0.15; } }
@media (max-width: 992px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .clients-grid { grid-template-columns: 1fr; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-up { transform: translateY(24px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-zoom { transform: scale(0.96); }

@media (max-width: 768px) {
    .main-nav.active {
        background: rgba(11, 15, 25, 0.95);
        backdrop-filter: blur(8px);
        box-shadow: 0 10px 20px rgba(168,85,247,0.25);
        border-top: 1px solid rgba(168,85,247,0.25);
    }
    .main-nav.active ul { padding: 20px; }
    .main-nav.active a { color: var(--text-color); }
    .main-nav.active a:hover { color: var(--accent-color); text-shadow: 0 0 8px rgba(34,211,238,0.6); }
}
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::before { content: ""; position: absolute; inset: 0; border-radius: 50px; padding: 2px; background: linear-gradient(90deg, #ff005d, #00ffa3, #00b3ff, #a855f7, #22d3ee); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: rgbFlow 6s linear infinite; }
