/* ========================================
   Services Page Styles
   ======================================== */

/* Services Hero Section */
.services-hero {
    padding: 8rem 2rem 6rem;
    background: #ffffff;
    background-image: radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 50%),
                      radial-gradient(circle at bottom left, rgba(34, 197, 94, 0.06), transparent 50%);
    text-align: center;
}

.services-hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.services-hero h1 span {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 1rem;
    color: #0ea5e9;
}

.services-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
}

.services-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #0ea5e9;
    font-weight: 600;
}

.services-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why PDI Section */
.why-pdi {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.why-pdi__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.why-pdi-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-pdi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.why-pdi-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.why-pdi-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.why-pdi-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Packages Section */
.packages {
    padding: 6rem 2rem;
    background: white;
}

.packages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.package-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-8px);
}

.package-card--featured {
    border-color: #667eea;
    border-width: 3px;
    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-badge--premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.package-badge--luxury {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
}

.package-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.package-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.price-period {
    font-size: 1rem;
    color: #718096;
}

.package-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.package-description p {
    color: #4a5568;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #2d3748;
}

.package-features svg {
    color: #48bb78;
    flex-shrink: 0;
}

.package-cta {
    margin-top: auto;
}

.package-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Inspection Coverage Section */
.inspection-coverage {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.inspection-coverage__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.coverage-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.coverage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.coverage-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.coverage-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Timeline Section */
.process-timeline {
    padding: 6rem 2rem;
    background: white;
}

.process-timeline__steps {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline__steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-step__content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-step__content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.timeline-step__content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Service CTA Section */
.service-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.service-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.service-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-cta__features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-feature svg {
    color: #48bb78;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 1.5rem 4rem;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero h1 span {
        font-size: 1.125rem;
    }

    .why-pdi__grid,
    .packages__grid,
    .inspection-coverage__grid,
    .faq__grid {
        grid-template-columns: 1fr;
    }

    .process-timeline__steps::before {
        left: 20px;
    }

    .timeline-step__number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .timeline-step {
        gap: 1rem;
    }

    .service-cta h2 {
        font-size: 2rem;
    }

    .service-cta__features {
        flex-direction: column;
        gap: 1rem;
    }
}
