/* Services Page Specific Styles */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    padding: 60px 0;
}

.service-card-large {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb4d);
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: #b21f1f;
    margin-bottom: 20px;
}

.service-card-large h3 {
    font-size: 1.5rem;
    color: #1a2a6c;
    margin-bottom: 15px;
}

.service-card-large p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0;
}

.service-features-list li {
    margin-bottom: 12px;
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list i {
    color: #b21f1f;
    margin-right: 12px;
    font-size: 1rem;
}

.service-card-large .btn {
    margin-top: 10px;
}

.cta-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    text-align: center;
    padding: 70px 0;
    margin-top: 50px;
}

.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .services-grid-full {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 0;
    }
    
    .service-card-large {
        padding: 25px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-card-large h3 {
        font-size: 1.3rem;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
}