/* ==========================================
   Service Pages Specific Styles
   ========================================== */

/* Service Hero Section */
.service-hero {
    padding: 8rem 0 4rem;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 172, 254, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb span {
    color: var(--light-gray);
    opacity: 0.5;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--light-gray);
}

.service-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero-description {
    font-size: 1.25rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.service-hero-actions {
    display: flex;
    gap: 1rem;
}

.service-hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float-gentle 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: -1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: -2s;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-title {
    font-weight: 600;
    color: var(--white);
}

.card-metric {
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--light-gray);
    margin-top: 0.25rem;
    opacity: 0.7;
}

/* Service Features */
.service-features {
    padding: var(--spacing-3xl) 0;
    background: var(--dark);
}

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

.feature-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-align: center;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 172, 254, 0.2);
    box-shadow: 0 15px 40px rgba(74, 172, 254, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-item p {
    color: var(--light-gray);
    line-height: 1.6;
    opacity: 0.85;
}

/* Implementation Process */
.implementation-process {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-800);
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.process-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 172, 254, 0.2);
    box-shadow: 0 20px 60px rgba(74, 172, 254, 0.15);
    transform: translateY(-5px);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.85;
}

.process-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-content ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-gray);
}

.process-content ul li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Industries Section */
.industries {
    padding: var(--spacing-3xl) 0;
    background: var(--black);
}

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

.industry-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 172, 254, 0.2);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.industry-card p {
    color: var(--light-gray);
    line-height: 1.6;
    opacity: 0.85;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-3xl) 0;
    background: var(--dark-800);
    color: var(--white);
}

.pricing-section .section-subtitle {
    color: var(--primary-light);
}

.pricing-section .section-title {
    color: var(--white);
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(74, 172, 254, 0.2);
}

.pricing-featured {
    background: linear-gradient(135deg, rgba(74, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-desc {
    color: var(--light-gray);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
}

.pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* Service CTA */
.service-cta {
    padding: var(--spacing-3xl) 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
    }
    
    .service-hero-visual {
        order: -1;
        height: 300px;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 0 3rem;
    }
    
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-description {
        font-size: 1.125rem;
    }
    
    .service-hero-actions,
    .cta-actions {
        flex-direction: column;
    }
    
    .features-grid,
    .industries-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}
