/* ================================================
   Service Pages Additional Styles
   ================================================ */

/* ========== Service Hero ========== */
.service-hero {
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.service-breadcrumb span {
    opacity: 0.8;
}

.service-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-tagline {
    font-size: 1.3rem;
    max-width: 800px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* ========== Service Overview ========== */
.service-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.overview-content h2 {
    margin-bottom: 25px;
}

.overview-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.key-benefits {
    margin-top: 50px;
}

.key-benefits h3 {
    margin-bottom: 30px;
    color: var(--gray-900);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--gray-50);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--red-primary);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--red-primary);
    margin-bottom: 15px;
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: var(--gray-900);
}

.benefit-item p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--gray-600);
}

/* ========== Sidebar ========== */
.overview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
}

.sidebar-card h3 {
    margin-bottom: 20px;
    color: var(--gray-900);
    font-size: 1.3rem;
}

.detail-list {
    margin-bottom: 25px;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

.detail-list i {
    color: var(--red-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-list strong {
    color: var(--gray-900);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.sidebar-link {
    margin-top: 5px;
}

/* ========== Who It's For Section ========== */
.who-its-for {
    padding: 80px 0;
    background: var(--gray-50);
}

.who-its-for h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 50px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.audience-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.audience-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.audience-card i {
    font-size: 3rem;
    color: var(--red-primary);
    margin-bottom: 20px;
}

.audience-card h3 {
    margin-bottom: 15px;
    color: var(--gray-900);
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ========== What's Covered Section ========== */
.whats-covered {
    padding: 80px 0;
    background: var(--white);
}

.whats-covered h2 {
    text-align: center;
    margin-bottom: 60px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.topic-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    transition: var(--transition);
}

.topic-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.topic-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red-primary), var(--orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.topic-card h3 {
    margin-bottom: 20px;
    margin-top: 10px;
    color: var(--gray-900);
}

.topic-card ul {
    list-style: none;
}

.topic-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--gray-700);
    line-height: 1.6;
}

.topic-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ========== Testimonials Section ========== */
.testimonials {
    padding: 80px 0;
    background: var(--gray-50);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--red-primary);
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 2px solid var(--gray-100);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ========== Experience Section ========== */
.experience-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    color: var(--white);
}

.experience-content h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.experience-stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-headings);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.experience-content p {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* ========== Service CTA ========== */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--orange) 100%);
    color: var(--white);
}

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

.service-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red-primary);
}

/* ========== Process Section (for Design Sprints) ========== */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-day {
    text-align: center;
}

.day-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--red-primary), var(--orange));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 2;
}

.day-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-name {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-headings);
}

.step-content {
    padding-top: 10px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Timeline line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: linear-gradient(180deg, var(--red-primary) 0%, var(--orange) 100%);
    z-index: 1;
}

/* ========== Feature Highlights ========== */
.feature-highlights {
    padding: 80px 0;
    background: var(--gray-50);
}

.feature-highlights h2 {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-box {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--red-primary);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--red-primary);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--gray-900);
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ========== Responsive Design for Service Pages ========== */
@media (max-width: 968px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-sidebar {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0 40px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-tagline {
        font-size: 1.1rem;
    }
    
    .service-overview,
    .who-its-for,
    .whats-covered,
    .testimonials,
    .experience-section,
    .service-cta,
    .process-section,
    .feature-highlights {
        padding: 50px 0;
    }
    
    .audience-grid,
    .topics-grid,
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .day-circle {
        width: 80px;
        height: 80px;
    }
    
    .process-timeline::before {
        left: 40px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}