/* Shared Service Page Enhancements */
:root {
    --service-accent: #00d4ff;
    --service-accent-alt: #a855f7;
    --service-hero-glow: rgba(0, 212, 255, 0.2);
    --service-hero-base: rgba(5, 10, 30, 0.95);
}

.service-page .service-hero {
    background: radial-gradient(circle at top, var(--service-hero-glow), var(--service-hero-base));
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.service-page .service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.service-page .service-hero .hero-glass-content {
    position: relative;
    z-index: 1;
}

.service-page .service-hero .hero-title-glass {
    color: #fff;
}

.service-page .service-hero .hero-subtitle-glass {
    color: rgba(255, 255, 255, 0.9);
}

.service-page .service-hero .hero-cta-glass .btn-glass-primary {
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    border: none;
}

.service-page .service-hero .hero-cta-glass .btn-glass-secondary {
    border-color: rgba(255, 255, 255, 0.4);
}

.service-page .service-icon-glass {
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.service-page .service-number {
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-page .quality-icon-glass,
.service-page .quality-stat-icon {
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-page .quality-stat-number {
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-page .service-pricing {
    padding: 6rem 2rem;
}

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.pricing-card-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card-glass:hover::before {
    opacity: 1;
}

.pricing-card-glass > * {
    position: relative;
    z-index: 1;
}

.pricing-card-glass h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
}

.pricing-card-glass ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.pricing-card-glass li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card-glass li i {
    color: var(--service-accent);
}

.pricing-card-glass .btn-glass-primary {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--service-accent), var(--service-accent-alt));
    border: none;
}

.pricing-card-glass.featured {
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.pricing-card-label {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .service-page .service-hero {
        padding: 5rem 1.5rem 4rem;
    }

    .service-page .service-hero .hero-cta-glass {
        flex-direction: column;
    }

    .service-page .service-pricing {
        padding: 3rem 1rem;
    }
}
