/* Service Detail Pages - Shared Styles */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, #1a2340 0%, #2d3856 100%);
    padding: 120px 1.5rem 80px;
    text-align: center;
    color: white;
    --service-hero-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.service-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5b8cc9 0%, #ffd700 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.service-tagline {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.service-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #f4f689 100%);
    color: #1a2340;
    box-shadow: 0 8px 25px rgba(245, 215, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a2340 0%, #2d3856 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(26, 35, 64, 0.4);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a2340;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 100px 1.5rem;
    background: white;
}

.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-section,
.solution-section {
    margin-bottom: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
    border-left: 4px solid #5b8cc9;
}

.solution-section {
    border-left-color: #ffd700;
    background: #fffbe6;
}

.problem-section h2,
.solution-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a2340;
    font-weight: 700;
}

.problem-section p,
.solution-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6b7d;
}

/* Deliverables Section */
.service-deliverables {
    padding: 100px 1.5rem;
    background: #f8fafc;
}

.service-deliverables .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-deliverables h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2340;
    font-weight: 700;
}

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

.deliverable-item {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.deliverable-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.deliverable-item i {
    font-size: 2.5rem;
    color: #5b8cc9;
    margin-bottom: 20px;
}

.deliverable-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1a2340;
    font-weight: 700;
}

.deliverable-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6b7d;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 100px 1.5rem;
    background: white;
}

.tech-stack-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tech-stack-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a2340;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5b8cc9;
    margin-bottom: 50px;
    font-weight: 500;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.tech-item {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: #5b8cc9;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(91, 140, 201, 0.15);
}

.tech-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 10px;
}

.tech-item p {
    font-size: 0.95rem;
    color: #5a6b7d;
    margin: 0;
}

/* Process Section */
.service-process {
    padding: 100px 1.5rem;
    background: #f8fafc;
}

.service-process .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-process h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2340;
    font-weight: 700;
}

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

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5b8cc9 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a2340;
    font-weight: 700;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6b7d;
}

/* Pricing Section */
.service-pricing {
    padding: 100px 1.5rem;
    background: white;
    text-align: center;
}

.service-pricing .container {
    max-width: 800px;
    margin: 0 auto;
}

.service-pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a2340;
    font-weight: 700;
}

.pricing-info {
    background: #f8fafc;
    padding: 50px 40px;
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.price-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.price-from {
    font-size: 1rem;
    color: #5a6b7d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2340;
}

.pricing-note {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6b7d;
    margin-bottom: 30px;
}

/* FAQ Section */
.service-faq {
    padding: 100px 1.5rem;
    background: #f8fafc;
}

.service-faq .container {
    max-width: 900px;
    margin: 0 auto;
}

.service-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #1a2340;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2340;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6b7d;
    margin: 0;
}

/* CTA Section */
.service-cta {
    padding: 100px 1.5rem;
    background: linear-gradient(135deg, #1a2340 0%, #2d3856 100%);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #f4f689 100%);
    color: #1a2340;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 215, 0, 0.35);
}

.btn-cta:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: #1a2340;
}

/* Responsive */
@media (max-width: 968px) {
    .service-hero {
        padding: 80px 1.5rem 60px;
    }

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

    .service-tagline {
        font-size: 1.2rem;
    }

    .service-icon-large {
        width: 80px;
        height: 80px;
    }

    .service-icon-large i {
        font-size: 2.5rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .problem-solution,
    .service-deliverables,
    .tech-stack-section,
    .service-process,
    .service-pricing,
    .service-faq,
    .service-cta {
        padding: 60px 1.5rem;
    }

    .problem-section h2,
    .solution-section h2,
    .service-deliverables h2,
    .tech-stack-section h2,
    .service-process h2,
    .service-pricing h2,
    .service-faq h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .deliverables-grid,
    .tech-stack-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

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

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

    .problem-section,
    .solution-section {
        padding: 30px 20px;
    }

    .deliverable-item,
    .process-step {
        padding: 30px 20px;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


