/* Service Detail Page Styles */

/* Hero Section */
.service-detail-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--muted);
}

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

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
}

.service-detail-hero .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-detail-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-hero .lead {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Main Content */
.service-detail-content {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - Main Content */
.main-content-section {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.content-section {
    margin-bottom: 3rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.content-section p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem 0 1rem 3rem;
    color: var(--dark);
    position: relative;
    border-bottom: 1px solid rgba(31, 139, 241, 0.1);
    font-size: 1.05rem;
}

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

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 32px;
    height: 32px;
    background: var(--gradient-3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(31, 139, 241, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.benefit-card h4 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-content p {
    color: var(--muted);
    margin: 0;
}

/* Right Column - Sidebar */
.sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-card .price-tag {
    font-size: 0.875rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-card .price-period {
    font-size: 1.25rem;
}

.pricing-card .price-subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-card .secondary-action {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: opacity 0.3s ease;
}

.pricing-card .secondary-action:hover {
    opacity: 0.7;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.875rem 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(31, 139, 241, 0.1);
}

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

.info-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.guarantee-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.guarantee-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section-detail {
    padding: 4rem 0;
    background: var(--bg);
}

.faq-section-detail .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* CTA Section */
.cta-detail {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 4rem 0 3rem;
    }

    .service-detail-hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .main-content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

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

    .pricing-card .price {
        font-size: 2.5rem;
    }

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

    .features-list li {
        padding-left: 2.5rem;
    }
}

