/* ================================================
   Service Detail Pages (تطوير الويب، تطبيقات الجوال، إلخ)
   ================================================ */

.service-page {
    min-height: calc(100vh - 80px);
    padding: var(--space-3xl) 0;
    display: flex;
    align-items: center;
}

.service-detail {
    width: 100%;
}

.service-detail-card {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: rgba(26, 10, 46, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: var(--radius-lg);
    font-size: 2.25rem;
    color: white;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.service-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.service-detail-desc {
    font-size: 1.125rem;
    color: var(--light-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.service-detail-actions .btn-primary,
.service-detail-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
}

/* Compact footer for service pages */
.footer.footer-compact {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--dark-tertiary);
}

.footer-compact .footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.footer-compact .footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    color: var(--text-light);
}

.footer-compact .footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.footer-compact .footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

[dir="rtl"] .service-detail-actions .btn-primary i {
    transform: scaleX(-1);
}
