/* Service Pages Styles */

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.back-link:hover {
    opacity: 1;
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-5px);
}

/* Service Hero */
.service-hero {
    min-height: 70vh;
    display: flex;
    align-items: flex-start;
    padding-top: 140px;
    padding-bottom: 4rem;
}

.service-hero .container {
    display: flex;
    flex-direction: column;
}

.service-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.service-hero-text {
    font-size: 1.35rem;
    font-weight: 300;
    opacity: 0.7;
    max-width: 600px;
    line-height: 1.7;
}

/* Service Details */
.service-details {
    padding: 6rem 0;
    background: var(--darker);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.details-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.details-content p {
    font-size: 1.1rem;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.details-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.image-placeholder svg {
    opacity: 0.3;
}

/* Service Features */
.service-features {
    padding: 8rem 0;
}

.service-features h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 0.8rem;
    opacity: 0.3;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.6;
    font-weight: 300;
}

/* Service Process */
.service-process {
    padding: 8rem 0;
    background: var(--darker);
}

.service-process h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

.process-timeline {
    max-width: 800px;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    width: 1px;
    height: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.1);
}

.step-marker {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.process-step:hover .step-marker {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    opacity: 0.6;
    line-height: 1.7;
    font-weight: 300;
}

/* Service Tech */
.service-tech {
    padding: 8rem 0;
}

.service-tech h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.tech-intro {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.tech-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-item {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: none;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Service Pricing */
.service-pricing {
    padding: 8rem 0;
}

.service-pricing h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--dark);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.7;
}

.price .period {
    font-size: 0.9rem;
    opacity: 0.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.pricing-features li svg {
    color: #4ade80;
    min-width: 16px;
}

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Service CTA */
.service-cta {
    padding: 8rem 0;
    background: var(--darker);
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 5rem;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.15rem;
    opacity: 0.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

    .details-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
        padding-top: 140px;
    }

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

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .cta-box {
        padding: 3rem 2rem;
    }
}
