/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Intro Content */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-content p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

/* Service Cards */
.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card-featured {
    border: 2px solid #2C5F8D;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2C5F8D;
    color: #FFFFFF;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Service Title */
.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C5F8D;
    margin-bottom: 16px;
    text-align: center;
}

/* Service Price */
.service-price {
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 8px;
}

.service-price span {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

/* Coverage Hours */
.service-coverage {
    font-size: 14px;
    color: #666666;
    text-align: center;
    font-style: italic;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E5E5;
}

/* Service Description */
.service-description {
    margin-bottom: 24px;
}

.service-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

/* Service Features */
.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2C5F8D;
    margin: 24px 0 16px 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    font-size: 16px;
    color: #333333;
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28A745;
    font-weight: 700;
    font-size: 18px;
}

/* Service Note */
.service-note {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    margin: 16px 0;
    padding: 12px;
    background: #F8F9FA;
    border-radius: 6px;
    text-align: center;
}

/* Coverage Grid */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.coverage-item {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    text-align: center;
}

.coverage-item h4 {
    font-size: 20px;
    color: #2C5F8D;
    margin-bottom: 8px;
}

.coverage-item p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Reality Check Section */
.reality-content {
    max-width: 900px;
    margin: 48px auto 0;
}

.reality-item {
    background: #FFFFFF;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    border-left: 4px solid #2C5F8D;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.reality-item h4 {
    font-size: 20px;
    color: #2C5F8D;
    margin-bottom: 12px;
}

.reality-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, #F8F9FA 0%, #D5E8F0 100%);
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}
