/* Service Pages Styling */
.service-hero {
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.95) 0%, rgba(8, 45, 70, 0.95) 100%), url('../images/campus_bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.service-section-header {
    margin-bottom: 50px;
}

.service-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feature-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    z-index: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
}

.faq-card {
    border: none;
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.faq-btn {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-btn:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.service-cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #082d46 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    border-radius: 30px;
    margin: 60px 0;
}


.btn-service-hero {
    background: var(--accent-color);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    border: none;
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.btn-service-hero:hover {
    background: #e67500;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.4);
    color: white;
}

.btn-service-hero i {
    transition: transform 0.3s;
}

.btn-service-hero:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-hero { padding: 80px 0 50px; }
    .service-hero h1 { font-size: 2.2rem; }
    .service-cta-banner { padding: 50px 20px; border-radius: 20px; }
    .btn-service-hero { width: 100%; justify-content: center; }
}
