/* =========================================
   SERVICES PAGES - Modern UI/UX Fix
   ========================================= */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --light: #f8fafc;
    --border: #e2e8f0;
    --radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* ----- Hero ----- */
.service-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 110px 0 90px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
    color: white;
    text-decoration: none;
}

/* ----- Sections ----- */
.section-padding {
    padding: 90px 0;
}

.bg-light {
    background: var(--light);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-lead {
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* ----- Feature Cards ----- */
.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: #c7d2fe;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ----- Process Steps ----- */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.process-step h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.process-step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ----- FAQ Accordion ----- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.25s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--text-muted);
}

/* ----- Final CTA ----- */
.cta-banner {
    background: var(--dark);
    color: white;
    padding: 90px 0;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .service-hero {
        padding: 80px 0 60px;
    }

    .section-padding {
        padding: 60px 0;
    }
}