/* Base Styles */
:root {
    --primary-color: #0066FF;
    --primary-dark: #0052CC;
    --secondary-color: #00D1FF;
    --dark-color: #0A2540;
    --light-color: #F8F9FA;
    --accent-color: #00FFA3;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;
    --dark-gray: #343A40;
    --danger-color: #DC3545;
    --warning-color: #FFC107;
    --success-color: #28A745;
    --font-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .contact-info span {
    margin-right: 15px;
}

.top-bar .contact-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.top-bar .auth-links a {
    color: #ffffff;
    margin-left: 15px;
}

.top-bar .auth-links a:hover {
    color: var(--secondary-color);
}

.top-bar .auth-links i {
    margin-right: 5px;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background-color: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.navbar-nav .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--secondary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(0, 209, 255, 0.1);
    color: var(--primary-color);
}

.btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 209, 255, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gray-color);
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Sections Common Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.feature-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 209, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-box .icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.plan-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.plan-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

.plan-header {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 209, 255, 0.1) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.plan-body {
    padding: 30px;
}

.plan-body ul {
    margin-bottom: 30px;
}

.plan-body ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.plan-body ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
}

.plan-footer {
    display: flex;
    justify-content: space-between;
}

/* Coverage Section */
.coverage-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.coverage-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.coverage-content p {
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.coverage-checker .input-group {
    margin-bottom: 30px;
}

.coverage-checker .form-control {
    height: 50px;
    border-radius: 5px 0 0 5px;
    border-right: none;
}

.coverage-checker .btn {
    border-radius: 0 5px 5px 0;
}

.expansion-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.expansion-info ul {
    margin-top: 15px;
}

.expansion-info ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.expansion-info ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.coverage-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-item .color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.legend-item .available {
    background-color: var(--success-color);
}

.legend-item .coming-soon {
    background-color: var(--warning-color);
}

.legend-item .planned {
    background-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card .rating {
    color: var(--warning-color);
    margin-bottom: 20px;
}

.testimonial-card .rating i {
    margin-right: 3px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(0, 102, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Speed Test Section */
.speedtest-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.speedtest-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.speedtest-content p {
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.speedtest-widget {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.speedtest-result {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.result-box {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    margin: 0 10px;
}

.result-box:first-child {
    margin-left: 0;
}

.result-box:last-child {
    margin-right: 0;
}

.result-box.download {
    border-top: 3px solid var(--primary-color);
}

.result-box.upload {
    border-top: 3px solid var(--accent-color);
}

.result-box.ping {
    border-top: 3px solid var(--secondary-color);
}

.result-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.result-unit {
    font-size: 0.9rem;
    color: var(--gray-color);
}

#startSpeedTest {
    width: 100%;
    margin-bottom: 20px;
}

.speedtest-progress {
    height: 5px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.speedtest-comparison {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.speedtest-comparison h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comparison-table table {
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 15px;
    text-align: left;
}

.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    margin: 0 10px;
    min-width: 180px;
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
}

.btn-light:hover {
    background-color: #ffffff;
    color: var(--dark-color);
}

/* Footer */
.footer-top {
    padding: 80px 0 40px;
    background-color: var(--dark-color);
    color: #ffffff;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
    height: 40px;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        padding: 20px 0;
    }
    
    .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .navbar-nav .btn {
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .top-bar .contact-info,
    .top-bar .auth-links {
        text-align: center;
        margin-bottom: 5px;
    }
    
    .coverage-map {
        margin-top: 40px;
    }
    
    .speedtest-result {
        flex-direction: column;
    }
    
    .result-box {
        margin: 10px 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }
    
    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 10px;
    }
    
    .footer-legal a {
        margin-left: 0;
        margin-right: 15px;
    }
}
/* Plans Page Specific Styles */
.plans-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 209, 255, 0.05) 100%);
}

.plans-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.speed-meter {
    background: #f0f0f0;
    height: 10px;
    border-radius: 5px;
    margin: 30px 0;
    position: relative;
}

.speed-indicator {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
    bottom: -20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

.speed-indicator:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Plan Cards */
.plan-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.1);
}

.plan-card.popular {
    border: 2px solid var(--primary-color);
}

.plan-header {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 209, 255, 0.1) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.term {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.plan-body {
    padding: 25px;
}

.speed {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.download, .upload {
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.download span, .upload span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-color);
}

.plan-body ul {
    margin-bottom: 25px;
}

.plan-body ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.plan-body ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
}

.plan-footer {
    padding: 0 25px 25px;
    text-align: center;
}

.plan-footer .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.plan-footer .btn-link {
    color: var(--primary-color);
    text-decoration: none;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
}

/* Plan Tabs */
.plan-tabs {
    margin-bottom: 50px;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
    justify-content: center;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--gray-color);
    font-weight: 600;
    padding: 12px 25px;
    margin: 0 5px;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom: 2px solid var(--primary-color);
}

/* Comparison Table */
.comparison-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    text-align: center;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr td:first-child {
    text-align: left;
    font-weight: 500;
}

/* Plan Details Accordion */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: #f9f9f9;
}

.accordion-button:not(.collapsed) {
    background-color: #f9f9f9;
    color: var(--primary-color);
}

.accordion-body {
    padding: 20px;
}

.accordion-body h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Plans CTA */
.plans-cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

.cta-box h3 {
    margin-bottom: 10px;
}

.cta-box p {
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .plans-hero {
        text-align: center;
    }
    
    .speed-meter {
        margin: 30px auto;
        max-width: 400px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .plan-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .cta-box .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}
/* Coverage Page Specific Styles */
.coverage-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 209, 255, 0.05) 100%);
}

.coverage-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.coverage-checker {
    margin: 30px 0;
}

.coverage-checker .input-group {
    max-width: 600px;
}

.coverage-checker .btn {
    min-width: 150px;
}

#coverageResult {
    max-width: 600px;
}

/* Map Styles */
.map-container {
    position: relative;
    margin-bottom: 30px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.map-legend h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-item .color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
}

.legend-item .available {
    background-color: var(--success-color);
}

.legend-item .coming-soon {
    background-color: var(--warning-color);
}

.legend-item .planned {
    background-color: var(--primary-color);
}

.map-actions {
    text-align: center;
}

/* Area Cards */
.area-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.neighborhoods {
    list-style: none;
    padding-left: 0;
}

.neighborhoods li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.neighborhoods li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.neighborhoods li .available {
    color: var(--success-color);
}

.neighborhoods li .coming-soon {
    color: var(--warning-color);
}

.neighborhoods li .planned {
    color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 80px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    padding: 5px;
    text-align: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* FAQ */
.coverage-faq {
    background: #f9f9f9;
    padding: 80px 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .coverage-hero {
        text-align: center;
    }
    
    .coverage-checker .input-group {
        margin: 0 auto;
    }
    
    #coverageResult {
        margin: 0 auto;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .timeline:before {
        left: 40px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-date {
        width: 50px;
    }
}

@media (max-width: 575.98px) {
    .coverage-hero h1 {
        font-size: 2rem;
    }
    
    .map-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-date {
        width: 40px;
        font-size: 0.8rem;
    }
}
