/* ==========================================
   MARITIME SECURITY PAGE - ADDITIONAL STYLES
   Extends base service-page.css
   Legacy Protection Services
========================================== */

/* ------------------------------------------
   OPERATING AREAS SECTION
------------------------------------------ */
.operating-areas-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #F0F2F5;  /* Grey background for visual break */
}

.operating-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.operating-areas-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;
}

.operating-areas-content > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.area-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.area-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.875rem;
    background: var(--color-white);
    border-radius: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.area-highlight:hover {
    transform: translateX(5px);
    border-color: rgba(214, 154, 59, 0.2);
    background: #FEF5E8;  /* Matches homepage hover */
}

.area-highlight i {
    width: 45px;
    height: 45px;
    background: rgba(214, 154, 59, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.area-highlight h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.area-highlight p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.operating-areas-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.operating-areas-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Override CTA Section to White for better separation */
.maritime-security-page .cta-section {
    background: #ffffff;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.maritime-security-page .cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.maritime-security-page .operating-areas-section {
    background: #ffffff;
}

.maritime-security-page .operating-areas-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */
@media (max-width: 991px) {
    .area-highlight {
        padding: 0.75rem;
    }
    
    .area-highlight i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .area-highlight h4 {
        font-size: 0.85rem;
    }
    
    .area-highlight p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .operating-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .operating-areas-image {
        order: -1;
    }
    
    .area-highlight {
        padding: 0.7rem;
    }
    
    .area-highlight i {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .area-highlight {
        gap: 0.75rem;
    }
    
    .area-highlight i {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .area-highlight h4 {
        font-size: 0.8rem;
    }
    
    .area-highlight p {
        font-size: 0.65rem;
    }
}