/* Call Button Mobile Styles */
.header-cta {
    margin-left: 30px;
}

/* Call Button Styles */
.header-cta {
    margin-left: 20px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.call-btn:hover {
    background: #ffdb4d;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.call-btn .phone-icon {
    color: #003366;
    font-size: 1.2em;
    display: inline-block;
    margin: 0;
}

.call-btn .phone-number {
    display: inline-block;
    margin: 0;
    font-weight: 600;
    color: #003366;
}

/* Mobile Call Button Styles */
@media (max-width: 768px) {
    .header-cta {
        display: flex;
        margin: 0;
        justify-content: center;
        width: 100%;
        padding: 10px 0;
        background: transparent;
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
    }

    .call-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: auto;
        height: auto;
        border-radius: 25px;
        padding: 8px 16px;
        font-size: 0.95em;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        white-space: nowrap;
    }

    .call-btn .phone-number {
        display: inline-block;
        margin: 0;
        font-weight: 600;
    }

    .call-btn .phone-icon {
        font-size: 1.1em;
        display: inline-block;
        margin: 0;
    }

    /* Pulse animation for mobile */
    .pulse {
        animation: pulse 2s infinite;
    }
}

    .call-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        background: #ffcc00;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .call-btn .phone-number {
        display: none;
    }

    .call-btn .phone-icon {
        margin: 0;
        font-size: 1.5em;
    }

    /* Pulse animation for mobile */
    .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 15px rgba(255, 204, 0, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
        }
    }

/* Base responsive fixes */
html, body {
    overflow-x: hidden;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .provider-logos-grid {
        overflow: auto;
    }

    /* Container width adjustment */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Header fixes */
    .site-header {
        padding: 15px 0;
    }

    .site-header .container {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "menu logo"
            "cta cta";
        gap: 10px;
        align-items: center;
    }

    .mobile-menu-btn {
        grid-area: menu;
    }

    .header-logo {
        grid-area: logo;
        padding: 0;
        text-align: center;
    }

    .header-cta {
        grid-area: cta;
        width: 100%;
    }

    #main-nav {
        display: none;
    }

    #main-nav.active {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .logo-text {
        font-size: 0.7em;
    }

    /* Hero section fixes */
    .hero {
        padding: 35px 0 60px;
    }

    .hero-center h1 {
        font-size: 2em;
        padding: 30px 10px;
    }

    .hero-center p {
        font-size: 1em;
        padding: 0 10px;
    }

    .zip-search {
        flex-direction: column;
        padding: 0 10px;
    }

    .zip-search input,
    .zip-search button {
        width: 100%;
        max-width: none;
    }
    

    /* Coverage section fixes */
    .coverage-search {
        flex-direction: column;
        padding: 15px;
    }

    .coverage-search input,
    .coverage-search button {
        width: 100%;
    }

    .coverage-text {
        padding: 0 10px;
    }

    /* Product cards fixes */
    .product-card {
        margin: 0 10px 20px;
        width: calc(100% - 20px);
    }

    .product-features {
        padding: 20px 15px;
    }

    .order-btn {
        width: 100%;
        padding: 12px 20px;
    }

    /* Service cards fixes */
    .extra-service-card,
    .feature-card {
        margin: 0 10px 20px;
        width: calc(100% - 20px);
        padding: 20px 15px;
    }

    /* CTA section fixes */
    .cta {
        padding: 30px 10px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Specific fixes for extra small devices */
@media (max-width: 480px) {
    .hero-center h1 {
        font-size: 1.8em;
    }

    .call-btn {
        padding: 8px 15px;
        font-size: 0.85em;
    }

    .provider-results {
        padding: 10px;
    }

    .coverage-section {
        background: #003366;
    }
}
