/* ==========================================
   ARMED RESPONSE PAGE - ADDITIONAL STYLES
   Extends base service-page.css
   Legacy Protection Services
========================================== */

/* ------------------------------------------
   SERVICE AREA SECTION
------------------------------------------ */
.service-area-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #ffffff;  /* White background for contrast */
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-area-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-area-content > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.25rem 0;
}

.area-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(214, 154, 59, 0.3);
}

.area-category h4 i {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.area-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-category li {
    padding: 0.35rem 0;
    font-size: 0.75rem;
    color: var(--color-text-light);
    position: relative;
    padding-left: 1rem;
}

.area-category li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.65rem;
}

.expand-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(214, 154, 59, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 0.75rem;
}

.expand-note i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.service-area-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.service-area-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Override CTA Section to White for better separation */
.armed-response-page .cta-section {
    background: #ffffff;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.armed-response-page .cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */
@media (max-width: 991px) {
    .area-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-area-image {
        order: -1;
    }
    
    .area-list {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .area-category h4 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .area-category li {
        font-size: 0.7rem;
        padding: 0.25rem 0 0.25rem 0.9rem;
    }
    
    .expand-note {
        font-size: 0.7rem;
        padding: 0.5rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .area-category h4 {
        font-size: 0.75rem;
    }
    
    .area-category li {
        font-size: 0.65rem;
    }
    
    .expand-note {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }
    
    .expand-note i {
        font-size: 0.7rem;
    }
}