/* =========================================
SERVICE AREA SECTION - PREMIUM DESIGN
========================================= */

.service-area-section{
    padding:80px 0;
}

/* Inherit global container */

/* =========================================
CITY GRID
========================================= */

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px auto 60px auto;
    max-width: 1200px;
    align-items: center;
    justify-items: center;
}

.city-card {
    width: 100%;
    max-width: 260px;
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--header-bg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(26, 44, 163, 0.08);
}
.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(26, 44, 163, 0.1);
    border-color: rgba(26, 44, 163, 0.2);
    background: linear-gradient(135deg, #ffffff, #fefef9);
}
/* TOP ACCENT BAR */

.city-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.12);
}

.city-card:hover::before{
    height:100%;
    opacity:.08;
    transition:.35s ease;
}


/* =========================================
BOTTOM CONTENT BOX
========================================= */

.service-area-bottom {
    max-width: 1120px;
    width: calc(100% - 80px);
    margin: 0 auto;
    background: #fff;
    padding: 22px 23px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-area-bottom p {
    line-height: 1.6;
    color: #000;
    margin: 0;
}
/* =========================================
RESPONSIVE BREAKPOINTS
========================================= */

/* Large Tablets & Small Desktops (1200px and below) */
@media(max-width: 1200px){
    .city-grid{
        gap: 25px;
        padding: 0 15px;
    }
    
    .city-card{
        max-width: 240px;
        padding: 28px 20px;
        font-size: 17px;
        border-radius: 22px;
    }
}

/* Tablets & Medium Screens (992px and below) */
@media(max-width: 992px){
    .service-area-section{
        padding: 60px 0;
    }
    
    .city-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 30px auto 50px auto;
    }
    
    .city-card{
        max-width: 100%;
        padding: 28px 20px;
        font-size: 17px;
        border-radius: 22px;
    }
    
    .section-header h2{
    }
    
    .section-header p{
    }
    
    .service-area-bottom{
        padding: 35px;
        border-radius: 25px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    
    .service-area-bottom p{
        line-height: 1.8;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media(max-width: 768px){
    .service-area-section{
        padding: 50px 0;
    }
    
    /* Inherit global container */
    
    .city-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 25px auto 40px auto;
        padding: 0 12px;
    }
    
    .city-card{
        max-width: 100%;
        padding: 22px 16px;
        font-size: 16px;
        border-radius: 20px;
    }
    
    .city-card:hover{
        transform: translateY(-4px);
    }
    
    .section-header h2{
    }
    
    .section-header p{
        line-height: 1.6;
    }
    
    .service-area-bottom{
        padding: 25px 20px;
        border-radius: 20px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    
    .service-area-bottom p{
        line-height: 1.7;
    }
    
    .trust-buttons{
        flex-direction: column;
        gap: 12px;
    }

    .btn-estimate,
    .btn-call{
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Mobile Devices (576px and below) */
@media(max-width: 576px){
    .service-area-section{
        padding: 40px 0;
    }
    
    /* Inherit global container */
    
    .city-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px auto 35px auto;
        padding: 0 10px;
    }
    
    .city-card{
        padding: 18px 12px;
        font-size: 15px;
        border-radius: 16px;
        border-width: 1px;
    }
    
    .city-card::before{
        height: 4px;
    }
    
    .section-header h2{
    }
    
    .section-header p{
        padding: 0 10px;
    }
    
    .service-area-bottom{
        width: calc(100% - 30px);
        padding: 20px 15px;
        border-radius: 18px;
        margin: 0 auto;
    }
    
    .service-area-bottom p{
        line-height: 1.6;
    }
}

/* Small Mobile Devices (480px and below) */
@media(max-width: 480px){
    .service-area-section{
        padding: 35px 0;
    }
    
    .city-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 15px auto 30px auto;
        padding: 0 8px;
    }
    
    .city-card{
        padding: 15px 10px;
        font-size: 18px;
        border-radius: 14px;
    }
    
    .section-header h2{
    }
    
    .section-header p{
    }
    
    .service-area-bottom{
        width: calc(100% - 30px);
        margin: 0 auto;
        padding: 18px 12px;
        border-radius: 16px;
    }
    
    .service-area-bottom p{
        line-height: 1.5;
    }
}

/* Very Small Mobile Devices (400px and below) */
@media(max-width: 400px){
    .service-area-section{
        padding: 30px 0;
    }
    
    .city-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        margin: 15px auto 25px auto;
        max-width: 260px;
    }
    
    .city-card{
        max-width: 100%;
        padding: 18px 12px;
        font-size: 18px;
        border-radius: 16px;
    }
    
    .section-header h2{
    }
    
    .section-header p{
    }
    
    .service-area-bottom{
        width: calc(100% - 30px);
        margin: 0 auto;
        padding: 15px 10px;
        border-radius: 14px;
    }
    
    .service-area-bottom p{
    }
}

/* Landscape Mode for Mobile */
@media(max-width: 768px) and (orientation: landscape){
    .service-area-section{
        padding: 40px 0;
    }
    
    .city-grid{
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 15px;
    }
    
    .city-card{
        min-width: 150px;
        padding: 15px 12px;
        font-size: 13px;
    }
    
    .service-area-bottom{
        margin-top: 20px;
    }
}

/* Print Styles (Optional) */
@media print {
    .service-area-section{
        padding: 20px 0;
    }
    
    .city-grid{
        display: block;
    }
    
    .city-card{
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .city-card::before{
        display: none;
    }
    
    .city-card:hover{
        transform: none;
    }
    
    .service-area-bottom{
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.service-area-section h2, .section-header h2 { font-size: 40px !important; }
.service-area-section h3, .section-title h3 { font-size: 22px !important; }
.service-area-section p, .service-area-bottom p, .section-header p { font-size: 18px !important; line-height: 1.6 !important; }
.service-area-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .service-area-section h2, .section-header h2 { font-size: 35px !important; }
    .service-area-section h3, .section-title h3 { font-size: 22px !important; }
    .service-area-section p, .service-area-bottom p, .section-header p { font-size: 18px !important; line-height: 1.6 !important; }
    .service-area-section li { font-size: 18px !important; line-height: 1.6 !important; }
}