/* HERO SECTION HANDLED BY GLOBAL .av-hero-master */

/* SERVICES GRID SECTION */
.av-services-grid-section {
    width: 100vw;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f5fbff, #ffffff);
}

.av-services-grid-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.av-services-grid-inner h2 {
    font-size: 42px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 18px;
}

.services-intro {
    max-width: 820px;
    margin: 0 auto 70px;
    font-size: 18.5px;
    color: #4a6074;
    line-height: 1.65;
}

.av-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

/* SERVICE CARDS HANDLED BY GLOBAL .av-card-base */
.av-service-card.featured {
    border: 3px solid #00aaff !important;
    transform: scale(1.03);
}

/* WHY CHOOSE US SECTION */
.av-why-choose {
    width: 100vw;
    padding: 100px 20px;
    background: #ffffff;
}

.av-why-choose-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.av-why-choose h2 {
    font-size: 40px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 18px;
}

.why-intro {
    max-width: 820px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #4a6074;
    line-height: 1.7;
}

.av-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.av-why-card {
    background: #f5fbff;
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 60, 120, 0.08);
}

.av-why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
}

.av-why-card p {
    font-size: 16px;
    color: #4a6074;
    line-height: 1.65;
}

/* SERVICE AREA SECTION */
.av-service-area-section {
    width: 100vw;
    padding: 90px 20px;
    background: linear-gradient(to bottom, #eef8ff, #ffffff);
}

.av-service-area-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.av-service-area-inner h2 {
    font-size: 38px;
    font-weight: 800;
    color: #003366;
    margin-bottom: 18px;
}

.av-service-area-inner>p {
    max-width: 760px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #4a6074;
    line-height: 1.7;
}

.av-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 8px;
}

.location-card p {
    font-size: 15px;
    color: #5a6f82;
}

/* CTA SECTION */
.av-services-cta {
    width: 100vw;
    padding: 100px 20px 120px;
    background: linear-gradient(135deg,
            #002b5c 0%,
            #004a8f 60%,
            #006bb3 100%);
    text-align: center;
    color: #ffffff;
}

.av-services-cta-inner {
    max-width: 900px;
    margin: auto;
}

.av-services-cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.av-services-cta p {
    font-size: 19px;
    color: #eaf6ff;
    max-width: 780px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-trust {
    font-size: 15px;
    color: #cfe9ff;
}

/* RESPONSIVE */
@media (max-width: 980px) {

    .av-services-grid,
    .av-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .av-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .av-services-hero {
        padding: 90px 20px 110px;
    }

    .av-services-hero h1 {
        font-size: 38px;
    }

    .av-services-hero p {
        font-size: 18px;
    }

    .av-services-grid-inner h2 {
        font-size: 32px;
    }

    .services-intro {
        font-size: 17px;
    }

    .av-why-choose h2 {
        font-size: 32px;
    }

    .av-service-area-inner h2 {
        font-size: 30px;
    }

    .av-services-cta h2 {
        font-size: 32px;
    }

    .av-services-cta p {
        font-size: 17.5px;
    }
}

@media (max-width: 640px) {

    .av-services-grid,
    .av-why-grid,
    .av-locations-grid {
        grid-template-columns: 1fr;
    }

    .av-service-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* PHONE HIGHLIGHT */
.cta-phone-highlight {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px 40px;
    margin: 0 auto 40px;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.cta-phone-label {
    font-size: 15px;
    font-weight: 600;
    color: #bfe7ff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.cta-phone-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s ease;
}

.cta-phone-number:hover {
    color: #00c6ff;
}

/* WHITE SECONDARY BUTTON */
.av-btn-secondary-white {
    background: rgba(255, 255, 255, 0.95);
    color: #003366;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid transparent;
}

.av-btn-secondary-white:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE PHONE */
@media (max-width: 640px) {
    .cta-phone-number {
        font-size: 36px;
    }

    .cta-phone-highlight {
        padding: 24px 28px;
    }
}