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: #003366;
    color: #fff;
    padding: 50px 0;
}
.site-header .logo {
    display: flex;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
    float: right;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    
    padding: 0;
    align-items: center;
}
.site-header nav ul li {
    display: inline;
}
.site-header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.site-header nav a:hover, .call-btn {
    color: #ffcc00;
}
.call-btn {
    background: #ffcc00;
    color: #003366 !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    margin-left: 20px;
}
.hero {
    background: linear-gradient(120deg, #003366 60%, #0077cc 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.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: #fff;
    padding: 50px 0;
    text-align: center;
}
.products h2 {
    margin-bottom: 35px;
}
.product-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.product-card {
    background: #f1f5fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 30px 25px;
    width: 260px;
    margin-bottom: 20px;
}
.product-card h3 {
    margin-top: 0;
    color: #003366;
}
.order-btn {
    display: inline-block;
    margin-top: 15px;
    background: #0077cc;
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}
.order-btn:hover {
    background: #005fa3;
}
.services {
    background: #f7f9fb;
    padding: 50px 0;
    text-align: center;
}
.services h2 {
    margin-bottom: 35px;
}
.service-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 30px 25px;
    width: 260px;
    margin-bottom: 20px;
}
.service-card img {
    width: 40px;
    margin-bottom: 15px;
}
.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: #f1f5fa;
    padding: 50px 0;
    text-align: center;
}
.extra-services h2 {
    margin-bottom: 35px;
    color: #003366;
}
.extra-service-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.extra-service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 25px 20px;
    width: 170px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.extra-service-card img {
    width: 40px;
    margin-bottom: 12px;
}
.extra-service-card h3 {
    margin: 0;
    font-size: 1.1em;
    color: #0077cc;
}
@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: 50px;
}
.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;
}