/* ===== SERVICE PAGES CSS - Complete & Final ===== */

/* === Hero Section === */
.sp-hero {
    background: #1a2332;
    padding: 140px 0 60px;
    color: white;
}

.sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 82, 255, 0.1);
    border: 1px solid rgba(0, 82, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.sp-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: white;
}

.sp-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.sp-feature-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #10B981;
}

/* === Section Styles === */
.sp-section {
    padding: 60px 0;
    background: var(--gray-900);
}

.sp-section-light {
    background: #f8f9fa !important;
}

.sp-section-intro {
    padding: 80px 0;
    background: #1a2332;
}

/* === Headings === */
.sp-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sp-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 28px 0 16px;
}

.sp-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Light Section Colors */
.sp-section-light .sp-heading,
.sp-section-light .sp-subheading {
    color: #1a2332 !important;
}

.sp-section-light .sp-text {
    color: #475569 !important;
}

/* === Lists === */
.sp-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.sp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.sp-list li i {
    color: #10B981;
    font-size: 18px;
    margin-top: 5px;
    flex-shrink: 0;
}

.sp-section-light .sp-list li {
    color: #475569 !important;
}

/* === Cards === */
.sp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

.sp-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.sp-section-light .sp-card {
    background: white;
    border-color: #e2e8f0;
}

.sp-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.sp-section-light .sp-card h4 {
    color: #1a2332;
}

.sp-card p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.sp-section-light .sp-card p {
    color: #64748b;
}

/* === Grid Layout === */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.sp-grid-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    /*border-radius: 8px;*/
}

.sp-section-light .sp-grid-item {
    background: white;
}

.sp-grid-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.sp-section-light .sp-grid-item h5 {
    color: #1a2332;
}

.sp-grid-item p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

.sp-section-light .sp-grid-item p {
    color: #64748b;
}

/* === Steps === */
.sp-steps {
    margin: 30px 0;
}

.sp-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-section-light .sp-step {
    border-bottom-color: #e2e8f0;
}

.sp-step:last-child {
    border-bottom: none;
}

.sp-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.sp-step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.sp-section-light .sp-step-content h4 {
    color: #1a2332;
}

.sp-step-content p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.sp-section-light .sp-step-content p {
    color: #64748b;
}

/* === Buttons === */
.sp-btn-primary,
.sp-btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.sp-btn-primary {
    background: var(--primary);
    color: white;
    border: none;
}

.sp-btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.sp-btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sp-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* === Accordion for Service Pages === */
.sp-section .accordion-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    margin-bottom: 12px;
}

.sp-section .accordion-button {
    background: transparent !important;
    color: white !important;
    font-weight: 600;
}

.sp-section .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: white !important;
}

.sp-section .accordion-body {
    color: var(--gray-300) !important;
}

.sp-section-light .accordion-item {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
}

.sp-section-light .accordion-button {
    background: white !important;
    color: #1a2332 !important;
}

.sp-section-light .accordion-button:not(.collapsed) {
    background: white !important;
    color: #1a2332 !important;
}

.sp-section-light .accordion-body {
    color: #475569 !important;
}

/* === Responsive === */
@media (max-width: 768px) {
    .sp-hero {
        padding: 100px 0 50px;
    }
    .sp-section,
    .sp-section-intro {
        padding: 50px 0;
    }
    .sp-grid {
        grid-template-columns: 1fr;
    }
    .sp-step {
        flex-direction: column;
        gap: 12px;
    }
}
