/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Service Hero */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    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;
}

.service-hero-content {
    max-width: 700px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

.service-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.service-breadcrumb a:hover {
    opacity: 0.8;
}

.service-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #ffffff !important;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.service-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* What Is Section */
.service-what {
    padding: 100px 0;
    background: var(--white);
}

.service-what-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.service-what-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.service-what-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 20px;
}

.service-what-content p strong {
    color: var(--charcoal);
}

.highlight-box {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid var(--deep-blue);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--deep-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.highlight-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 0.95rem;
    color: var(--slate);
    margin-bottom: 16px;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--slate);
    border-bottom: 1px solid var(--gray-200);
}

.highlight-box li:last-child {
    border-bottom: none;
}

.highlight-box li strong {
    color: var(--navy);
}

/* Triggers Section */
.service-triggers {
    padding: 100px 0;
    background: var(--gray-50);
}

.triggers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.trigger-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.trigger-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.trigger-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trigger-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.trigger-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.trigger-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

/* Approach Section */
.service-approach {
    padding: 100px 0;
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.approach-step {
    position: relative;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
}

.approach-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.approach-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

/* Why Us Section */
.service-why-us {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-us-item {
    display: flex;
    gap: 20px;
}

.why-us-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.why-us-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-us-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

.why-us-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    border-left: 4px solid var(--deep-blue);
}

.why-us-testimonial blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.service-faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--slate);
}

/* CTA Section */
.service-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: var(--white);
}

.related-services h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 32px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    display: block;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.related-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-what-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .triggers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-stat {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .service-hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .triggers-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
