body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f9fb;
    color: #222;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header layout: logo right, nav left */
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    order: 2;
    margin-left: 30px;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

#main-nav {
    order: 1;
    margin-left:-25px;
}

#main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#main-nav li {
    display: inline;
}

@media (max-width: 700px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-header .logo {
        order: 1;
        margin: 0 0 10px 0;
        width: 100%;
        text-align: right;
    }
    #main-nav {
        order: 2;
        width: 100%;
    }
    #main-nav ul {
        justify-content: flex-start;
    }
}
.site-header {
    background: #ffffff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styles */
.header-logo {
    flex: 0 0 auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5em;
    font-weight: 700;
    color: #003366;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    letter-spacing: -0.02em;
}

/* Navigation styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #003366;
    position: relative;
    transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #003366;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

#main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

#main-nav li {
    display: inline;
}

#main-nav a {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

#main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0077cc;
    transition: width 0.3s ease;
}

#main-nav a:hover::after {
    width: 100%;
}

/* Mobile call number styles */
.mobile-call {
    display: none;
}

.mobile-number-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* gap: 8px; */
    background: #ffcc00;
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding: 8px 10px;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mobile-number-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

.mobile-number-btn .phone-icon {
    color: #0077cc;
}

@media (max-width: 768px) {
    .site-header .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }

    .mobile-menu-btn {
        order: 1;
        margin-right: 0;
    }

    .mobile-call {
        display: flex;
        justify-content: center;
        order: 2;
    }

    .header-logo {
        order: 3;
        margin-right: 0;
    }

    .logo-text {
        font-size: 1.1em;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    #main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    #main-nav li {
        width: 100%;
    }

    #main-nav a {
        display: block;
        padding: 10px 0;
        font-size: 1.2em;
        width: 100%;
    }

    #main-nav a::after {
        display: none;
    }
}

/* Call button styles */
.header-cta {
    flex: 0 0 auto;
}

.call-btn {
    background: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 204, 0, 0.2);
}

.call-btn:hover {
    background: #ffd633;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.phone-icon {
    font-size: 1.2em;
    color: #0077cc; /* Modern blue color */
}

/* Pulse animation for call button */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 204, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    #main-nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-cta {
        margin-top: 10px;
    }
    
    .call-btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
.hero {
    /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner.jpg');*/
    background-size: cover;
    background-position: center;
    padding: 55px 0 100px;
    text-align: center;
    min-height: 600px;
    margin-top: 100px;
    background-color:#e6f1ff;
}

.hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.provider-logos-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    max-width: 100%;
    /*overflow-x: auto;*/
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.provider-logos-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.client-logo {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.client-logo img {
    width: 100%;
    height: auto;
    filter: none;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo:hover img {
    transform: scale(1.05);
}

.hero-center {
    padding: 20px;
    text-align: center;
}

.hero-center h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero-center p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.zip-search {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.zip-search input {
    padding: 15px;
    font-size: 1.1em;
    width: 200px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.zip-search button {
    padding: 15px 30px;
    background-color: #ff6b00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.zip-search button:hover {
    background-color: #ff8533;
}

.provider-results {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    color: #333;
    text-align: left;
}

.provider-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.package-details {
    margin: 15px 0;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.call-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.call-now-btn:hover {
    background: #ff8533;
}

@media (max-width: 1024px) {
    .provider-logos-grid {
        gap: 15px;
        padding: 15px;
        justify-content: flex-start;
    }
    
    .client-logo {
        width: 100px;
        height: 50px;
    }

    .hero-center {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .provider-logos-grid {
        gap: 12px;
        padding: 10px;
    }

    .client-logo {
        width: 90px;
        height: 45px;
        padding: 8px;
    }

    .hero-center h1 {
        font-size: 2em;
    }

    .hero-center p {
        font-size: 1em;
    }
}

/* Add indication for horizontal scroll */
.provider-logos-grid::after {
    content: '';
    flex: 0 0 1px;
    padding-right: 20px;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 50px;
}
.cta-btn {
    background: #ffcc00;
    color: #003366;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #ffd633;
}
.products {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 80px 0;
    text-align: center;
}

.products-header {
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 320px;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-header {
    padding: 30px 25px;
    background: linear-gradient(135deg, #003366 0%, #0077cc 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.product-header.xfinity {
    background: linear-gradient(135deg, #003366 0%, #0077cc 100%);
}

.product-header.spectrum {
    background: linear-gradient(135deg, #00337c 0%, #0055a4 100%);
}

.product-header.att {
    background: linear-gradient(135deg, #002b50 0%, #004c8c 100%);
}

.provider-logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffcc00;
    color: #003366;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-tag {
    margin-top: 15px;
}

.price {
    font-size: 2.5em;
    font-weight: bold;
}

.period {
    font-size: 1.2em;
    opacity: 0.8;
}

.product-features {
    padding: 30px 25px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-features li {
    padding: 12px 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

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

.feature-icon {
    font-size: 1.2em;
}

.product-footer {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.save-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(255,107,107,0.2);
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0077cc;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.order-btn:hover {
    background: #005fa3;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
        max-width: 320px;
    }

    .product-card.featured {
        transform: none;
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }
}
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-us .section-header h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-us .section-subtitle {
    color: #636e72;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icon-wrapper {
    background: #f0f4ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background-color 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: #e3e9ff;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper img {
    transform: scale(1.1);
}

.feature-content h3 {
    color: #2d3436;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-content p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .why-choose-us .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 25px;
    }
}
.cta {
    background: #0077cc;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}
.cta h2 {
    margin-bottom: 15px;
}
.contact {
    background: #fff;
    padding: 50px 0;
    text-align: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 20px auto;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}
.contact-form button {
    background: #003366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #005fa3;
}
.phone-contact {
    margin-top: 10px;
    font-size: 1.1em;
}
.site-footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1em;
    margin-top: 0;
}
@media (max-width: 900px) {
    .product-list, .service-list {
        flex-direction: column;
        align-items: center;
    }
}
.extra-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 80px 0;
    text-align: center;
}

.extra-services h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #003366;
}

.section-subtitle {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 50px;
}

.extra-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.extra-service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.extra-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.extra-service-card h3 {
    color: #003366;
    font-size: 1.5em;
    margin: 0 0 15px 0;
}

.extra-service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.service-features li {
    color: #444;
    padding: 8px 0 8px 30px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0077cc;
    font-weight: bold;
}

.service-cta {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #003366 0%, #0077cc 100%);
    border-radius: 20px;
    color: white;
}

.service-cta h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.service-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-cta .cta-btn {
    background: #ffcc00;
    color: #003366;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.service-cta .cta-btn:hover {
    background: #ffd633;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .extra-services {
        padding: 0px 0;
    }

    .extra-service-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .extra-service-card {
        padding: 30px 20px;
    }

    .service-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
}
@media (max-width: 900px) {
    .extra-service-list {
        flex-direction: column;
        align-items: center;
    }
}



.clients {
    background: #fff;
    padding: 40px 0 30px 0;
    text-align: center;
}
.clients h2 {
    color: #003366;
    margin-bottom: 30px;
}
.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 30px;
}
.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}
.client-logo img {
    max-width: 100px;
    max-height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
    filter: grayscale(0.2);
    background: #f7f9fb;
    border-radius: 8px;
    
}
.client-logo span {
    font-size: 1em;
    color: #222;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .client-logos {
        gap: 25px 10px;
    }
    .client-logo {
        width: 90px;
    }
    .client-logo img {
        max-width: 70px;
        max-height: 35px;
    }
}


.coverage-section {
    background: linear-gradient(90deg, #003366 0%, #0077cc 60%, #f7f9fb 100%);
    padding: 60px 0;
}
.coverage-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.coverage-text {
    flex: 1 1 350px;
    color: #fff;
    max-width: 500px;
}
.coverage-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #ffcc00;
}
.coverage-text h4 {
    font-size: 1.2em;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 400;
}
.coverage-text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e6ed;
    margin-bottom: 30px;
}

.coverage-search {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.coverage-search input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    color: #003366;
    transition: all 0.3s ease;
}

.coverage-search input:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.coverage-search button {
    padding: 12px 25px;
    background: #ffcc00;
    border: none;
    border-radius: 6px;
    color: #003366;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coverage-search button:hover {
    background: #ffd633;
    transform: translateY(-2px);
}

.coverage-results {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: none;
}

.coverage-results.active {
    display: block;
}

.coverage-cta {
    text-align: center;
    margin-top: 30px;
}

.coverage-cta p {
    color: #e0e6ed;
    margin-bottom: 15px;
    font-size: 1em;
}
.coverage-map {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}
.map-bg {
    position: relative;
    width: 350px;
    height: 220px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.92;
    z-index: 1;
}
.map-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 60% 40%, #ffcc00 0%, #0077cc 80%, transparent 100%);
    opacity: 0.18;
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 900px) {
    .coverage-flex {
        flex-direction: column;
        gap: 30px;
    }
    .coverage-map, .coverage-text {
        max-width: 100%;
    }
    .map-bg {
        width: 100%;
        max-width: 350px;
        height: 180px;
    }
}


.deadzone-section {
    background: linear-gradient(100deg, #0077cc 0%, #003366 70%, #ffcc00 100%);
    padding: 60px 0;
}
.deadzone-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.deadzone-text {
    flex: 1 1 350px;
    color: #fff;
    max-width: 500px;
}
.deadzone-text h2 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffcc00;
}
.deadzone-text p {
    font-size: 1.2em;
    color: #e0e6ed;
    margin-bottom: 50px;
}
.deadzone-image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 280px;
}
.deadzone-image img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    object-fit: cover;
    background: #fff;
}
@media (max-width: 900px) {
    .deadzone-flex {
        flex-direction: column;
        gap: 25px;
    }
    .deadzone-image img {
        width: 100%;
       
    }
}

/* Add to styles.css for disclaimer popup */
.disclaimer-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
}
.disclaimer-content {
    background: #fff;
    color: #003366;
    padding: 32px 28px 22px 28px;
    border-radius: 12px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.disclaimer-content h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #0077cc;
}
.disclaimer-content p {
    font-size: 1em;
    margin-bottom: 18px;
}
#close-disclaimer {
    background: #0077cc;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
#close-disclaimer:hover {
    background: #003366;
}
.provider-logo {
    width: 300px;
    height: 65px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: brightness(1) invert(1);
}

/* Phone icon styles */
.phone-icon, .btn-icon {
    margin-right: 8px;
    font-size: 1.2em;
    color: #4a90e2;
}

.mobile-number-btn .phone-icon {
    color: #4a90e2;
}

.call-btn .phone-icon {
    color: #4a90e2;
}

.order-btn .btn-icon {
    color: #4a90e2;
}