/* Service Page Styles */

.service-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #fff;
}

.service-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-hero .lead {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-content {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.content-card.highlight-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.content-card.highlight-card h2 {
    color: #fff !important;
}

.content-card.highlight-card h2 i {
    color: #ED2328;
}

.content-card.highlight-card > p {
    color: rgba(255,255,255,0.85) !important;
    text-align: left;
}

.content-card.highlight-card .service-item {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}

.content-card.highlight-card .service-item:hover {
    background: rgba(255,255,255,0.12);
}

.content-card.highlight-card .service-item h3 {
    color: #fff;
}

.content-card.highlight-card .service-item p {
    color: rgba(255,255,255,0.8);
}

.content-card.highlight-card .service-item ul li {
    color: rgba(255,255,255,0.8);
}

.content-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card h2 i {
    color: #ED2328;
    font-size: 22px;
}

.content-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.service-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    background: #fff;
    border-color: #ED2328;
    box-shadow: 0 8px 30px rgba(237, 35, 40, 0.1);
    transform: translateY(-4px);
}

.service-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3 i {
    color: #ED2328;
    font-size: 20px;
}

.service-item > p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #2AB153;
    font-size: 11px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.process-step {
    text-align: center;
    padding: 24px;
    position: relative;
}

.process-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ED2328 0%, #c41e22 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.feature-list li {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #2AB153;
    font-size: 18px;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.tech-tag {
    background: rgba(237, 35, 40, 0.1);
    color: #ED2328;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ED2328 0%, #c41e22 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-section h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #ED2328;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #1a1a2e;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero h1 {
        font-size: 32px;
    }

    .content-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .service-hero h1 {
        font-size: 26px;
    }

    .service-hero .lead {
        font-size: 15px;
    }

    .content-card {
        padding: 24px 20px;
    }

    .content-card h2 {
        font-size: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}
