/* ===========================
   Detail Page Styles
   =========================== */

.detail-hero {
    padding: 140px 0 80px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 79, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 95, 232, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    position: relative;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

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

.breadcrumb-nav a:hover {
    color: var(--text-primary);
}

.breadcrumb-nav span {
    color: var(--text-secondary);
}

.detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Content Section */
.detail-content {
    padding: 4rem 0;
    background-color: var(--darker-bg);
}

.content-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Service Blocks */
.service-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(107, 79, 229, 0.2);
    transform: translateY(-3px);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.service-block h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.training-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.training-list li {
    padding: 1rem 1.5rem;
    background: var(--darker-bg);
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.training-list li:hover {
    background: rgba(107, 79, 229, 0.1);
    transform: translateX(10px);
}

/* Difference Blocks */
.difference-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
}

.difference-block h3 {
    font-size: 1.85rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.difference-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.software-features {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.software-features h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.software-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.software-features ul li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.software-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.cost-savings {
    background: linear-gradient(135deg, rgba(107, 79, 229, 0.1), rgba(123, 95, 232, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cost-savings i {
    font-size: 3rem;
    color: var(--primary-color);
}

.cost-savings h4 {
    color: var(--text-primary);
    font-size: 1.35rem;
    margin: 0;
    font-weight: 600;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: var(--accent-gradient);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
}

.step-number {
    position: absolute;
    left: -60px;
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.step-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(107, 79, 229, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.training-details,
.coaching-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.training-details li,
.coaching-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.training-details li strong {
    color: var(--primary-color);
}

.coaching-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.coaching-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* CTA Box */
.cta-box {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(107, 79, 229, 0.3);
}

.cta-box h2 {
    font-size: 2.25rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

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

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .detail-title {
        font-size: 2.75rem;
    }
    
    .content-heading {
        font-size: 2rem;
    }
    
    .service-block,
    .difference-block {
        padding: 2rem;
    }
    
    .process-timeline {
        padding-left: 50px;
    }
    
    .step-number {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .detail-title {
        font-size: 2.25rem;
    }
    
    .detail-subtitle {
        font-size: 1.1rem;
    }
    
    .content-heading {
        font-size: 1.75rem;
    }
    
    .service-block,
    .difference-block {
        padding: 1.5rem;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .process-timeline {
        padding-left: 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .step-number {
        position: static;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cost-savings {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

