/* ==========================================
   K9 SECURITY PAGE - ADDITIONAL STYLES
   Extends base service-page.css
   Legacy Protection Services
========================================== */

/* ------------------------------------------
   BREEDS SECTION
------------------------------------------ */
.breeds-section {
    padding: clamp(48px, 6vw, 80px) 0;
    background: #ffffff;  /* White background for contrast */
}

.breeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.breeds-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;
}

.breeds-content > p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.breed-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.breed-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #F8F9FA;
    border-radius: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.breed-item:hover {
    transform: translateY(-3px);
    background: #FEF5E8;  /* Matches homepage hover */
    border-color: rgba(214, 154, 59, 0.2);
}

.breed-item 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.3rem;
    flex-shrink: 0;
}

.breed-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.breed-item p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.breeds-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #f5f5f5;
}

.breeds-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Override CTA Section to White for better separation */
.k9-security-page .cta-section {
    background: #ffffff;
}

/* Optional: Add a subtle border-top to the CTA for separation */
.k9-security-page .cta-section {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ------------------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------------------ */
@media (max-width: 991px) {
    .breed-showcase {
        gap: 0.875rem;
    }
    
    .breed-item {
        padding: 0.875rem;
    }
    
    .breed-item i {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .breed-item h4 {
        font-size: 0.85rem;
    }
    
    .breed-item p {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .breeds-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .breeds-image {
        order: -1;
    }
    
    .breed-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .breed-item {
        padding: 0.75rem;
    }
    
    .breed-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .breed-item {
        gap: 0.75rem;
    }
    
    .breed-item i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .breed-item h4 {
        font-size: 0.8rem;
    }
    
    .breed-item p {
        font-size: 0.65rem;
    }
}