/* Service Page Styles */

.service-banner {
    padding: 120px 0 80px;
    position: relative;
    color: white;
    margin-top: 80px;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 10px;
}

.service-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-banner h1 i {
    margin-right: 15px;
}

.service-banner p {
    font-size: 20px;
    opacity: 0.95;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.quick-facts {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fact-item i {
    font-size: 32px;
    color: #3b82f6;
}

.fact-item h4 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 5px;
}

.fact-item p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Types */
.service-types {
    padding: 80px 0;
    background: white;
}

.service-types h2 {
    text-align: center;
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 50px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.type-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}

.type-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.type-card.featured h3,
.type-card.featured p,
.type-card.featured li {
    color: white;
}

.type-card.featured .type-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.type-icon i {
    font-size: 32px;
    color: #3b82f6;
}

.type-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
}

.type-card p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-card ul {
    list-style: none;
    padding: 0;
}

.type-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #4a5568;
}

.type-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.type-card.featured ul li:before {
    color: #fbbf24;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 2px solid white;
}

.step i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: #1a202c;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: #10b981;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-banner h1 {
        font-size: 32px;
    }
    
    .service-banner p {
        font-size: 16px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
