/* Services Pages Common Styles */

/* Service Page Container */
.service-page {
    background-color: var(--off-white);
    min-height: 100vh;
}

/* Service Page Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Service Section */
.service-section {
    padding: 4rem 0;
}

.service-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--navy);
}

.service-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Icons */
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #F0D52D 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.service-cta {
    background: var(--navy);
    color: white;
    padding: 4rem 0;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.service-cta h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Timeline */
.process-step {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #F0D52D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: bold;
}

.process-step h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero p {
        font-size: 1rem;
    }

    .service-section h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}
