/* ==========================================
   ELECTRONIC SECURITY PAGE - ADDITIONAL STYLES
   Extends base service-page.css
   Legacy Protection Services
========================================== */

/* ------------------------------------------
   TECHNOLOGY SECTION
------------------------------------------ */
.technology-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #F0F2F5;  /* Grey background for contrast */
}

.technology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.technology-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;
}

.technology-content > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.tech-feature {
    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);
}

.tech-feature:hover {
    transform: translateX(5px);
    background: #FEF5E8;  /* Matches homepage hover */
    border-color: rgba(214, 154, 59, 0.2);
}

.tech-feature i {
    width: 42px;
    height: 42px;
    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.1rem;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.tech-feature p {
    font-size: 0.7rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.technology-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.technology-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Override CTA Section to White for better separation */
.elecronic-security-page .cta-section {
    background: #ffffff;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.elecronic-security-page .cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.elecronic-security-page .technology-section {
    background: #ffffff;
}

.elecronic-security-page .technology-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */
@media (max-width: 991px) {
    .tech-feature {
        padding: 0.75rem;
    }
    
    .tech-feature i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .tech-feature h4 {
        font-size: 0.8rem;
    }
    
    .tech-feature p {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .technology-image {
        order: -1;
    }
    
    .tech-feature {
        padding: 0.7rem;
    }
    
    .tech-feature i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tech-feature {
        gap: 0.75rem;
    }
    
    .tech-feature i {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .tech-feature h4 {
        font-size: 0.75rem;
    }
    
    .tech-feature p {
        font-size: 0.6rem;
    }
}