/* ===== SERVICES PAGE WITH IMAGES ===== */

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 40px 0;
}

/* Service block with image styling */
.service-block.with-image {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    height: 100%;
}

.service-block.with-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px rgba(10,42,68,0.08);
    border-color: #a37c4b;
}

/* Service image area */
.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(10,42,68,0.7) 0%, rgba(10,42,68,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-overlay i {
    font-size: 3.5rem;
    color: white;
    background: rgba(163,124,75,0.9);
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Service content */
.service-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 1.4rem;
    color: #0a2a44;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid #a37c4b;
    padding-bottom: 12px;
}

.service-content h4 i {
    color: #a37c4b;
    font-size: 1.5rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.service-content li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #2c3e50;
    line-height: 1.5;
}

.service-content li i {
    color: #a37c4b;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.zulu-badge {
    background: #fef0e6;
    color: #7e5f3b;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    align-self: flex-start;
    border: 1px solid #e6cba0;
}

/* Fee section enhanced */
.fee-section {
    margin: 60px 0;
}

.fee-card {
    background: linear-gradient(105deg, #0a2a44 0%, #1a3a54 100%);
    padding: 48px;
    border-radius: 28px;
    color: white;
}

.fee-content {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.fee-icon i {
    font-size: 3.5rem;
    color: #e6cba0;
}

.fee-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.fee-text p {
    color: #e0e7ef;
    font-size: 1.1rem;
}

.fee-highlight {
    background: rgba(230,203,160,0.15);
    padding: 16px 24px;
    border-radius: 50px;
    margin: 24px 0;
    display: inline-block;
    border-left: 4px solid #e6cba0;
}

.fee-highlight strong {
    color: #e6cba0;
}

.small-note {
    color: #b0c4ce !important;
    font-size: 0.95rem !important;
}

/* Reference section enhanced */
.ref-section {
    margin: 40px 0 60px;
}

.ref-grid {
    display: flex;
    gap: 32px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

.ref-icon i {
    font-size: 3rem;
    color: #a37c4b;
    background: #fef0e6;
    padding: 20px;
    border-radius: 50%;
}

.ref-text h3 {
    font-size: 1.6rem;
    color: #0a2a44;
    margin-bottom: 12px;
}

.ref-text p {
    color: #4a5f6e;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* IsiZulu banner from signage */
.isizulu-banner {
    margin: 40px 0 60px;
}

.isizulu-content {
    background: linear-gradient(135deg, #f2efe9 0%, #eae5db 100%);
    padding: 48px;
    border-radius: 28px;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    border-left: 8px solid #a37c4b;
}

.isizulu-content i {
    font-size: 3.5rem;
    color: #a37c4b;
}

.isizulu-content h3 {
    font-size: 1.8rem;
    color: #0a2a44;
    margin-bottom: 12px;
}

.isizulu-content p {
    font-size: 1.15rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-small {
    padding: 12px 28px;
    font-size: 0.95rem;
    background: #0a2a44;
}

.btn-small:hover {
    background: #143b5c;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .ref-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .isizulu-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-image-overlay i {
        font-size: 2.5rem;
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .fee-card,
    .ref-grid,
    .isizulu-content {
        padding: 28px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h4 {
        font-size: 1.2rem;
    }
}

/* ===== CRIMINAL SECTION ONLY - SMALLER TEXT ===== */
.criminal-service li {
    font-size: 0.85rem !important;   /* Smaller font */
    line-height: 1.5;
    margin-bottom: 8px;
}

.criminal-service .zulu-badge {
    font-size: 0.75rem;              /* Smaller badge too */
    padding: 4px 14px;
}

/* Keep heading large */
.criminal-service h4 {
    font-size: 1.4rem !important;
}
