/* Service Page Specific Styles */

.service-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.service-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.service-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
    color: var(--primary-dark);
}

.service-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.service-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Service Benefits Section */
.service-benefits {
    padding: 100px 0;
    background: white;
}

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

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(22, 115, 255, 0.15);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-icon img,
.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Features Section */
.service-features {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-label {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-list .check-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-list li strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-list li p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Feature Visual Components */
.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stats-visual {
    display: grid;
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 30px rgba(22, 115, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Threat Timeline */
.threat-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item.detected {
    border-left-color: #ff6b6b;
}

.timeline-item.analyzed {
    border-left-color: #ffa500;
}

.timeline-item.contained {
    border-left-color: #4caf50;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.timeline-content strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Response Process */
.response-process {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(47, 42, 153, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(47, 42, 153, 0.35);
}

.step-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.process-arrow {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 300;
    opacity: 0.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(22, 115, 255, 0.15);
    border-color: var(--primary-blue);
}

.step-card .step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F2A99 0%, #1673FF 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-blue);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-title {
        font-size: 2.5rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .feature-content h2 {
        font-size: 2rem;
    }

    .response-process {
        grid-template-columns: repeat(2, auto);
        gap: 2rem 1rem;
        padding: 2.5rem 1.5rem;
    }

    .process-arrow {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .service-hero {
        padding: 170px 0 80px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-hero-cta {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .response-process {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .step-label {
        font-size: 0.9rem;
    }
}
