

.services-section {
    padding: 70px 0;
    background: var(--light);
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.lead {
    font-size: 18px;
    color: var(--primary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.planning-phases {
    margin-bottom: 60px;
}

.planning-phases h3 {
    font-size: 24px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.planning-phases h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    border-radius: 2px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.phase-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #2980b9);
}

.phase-number {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.phase-card h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.phase-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.phase-card li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.phase-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 14px;
}

.planning-highlights {
    margin-bottom: 60px;
}

.planning-highlights h3 {
    font-size: 24px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.planning-highlights h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.highlight-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.highlight-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.planning-process {
    padding: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    margin-bottom: 60px;
}

.planning-process h3 {
    font-size: 24px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.planning-components {
    margin-bottom: 60px;
}

.planning-components h3 {
    font-size: 24px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.planning-components h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    border-radius: 2px;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.component-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.component-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.component-card h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 600;
}

.component-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.component-card li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.success-stats {
    margin-bottom: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
}

.success-stats h3 {
    font-size: 24px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.stat-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 992px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .component-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .planning-process {
        padding: 30px;
    }
    .component-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 36px;
    }
}