/* Services Page Specific Styles */

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--clean-white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><path d="M5,5 L15,15 M15,5 L5,15" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Active Navigation Item */
.nav-menu li a.active {
    color: var(--accent-orange);
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--clean-white);
}

.overview-content h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.overview-content p {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-cyan);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-charcoal);
    font-weight: 600;
}

/* Main Services */
.main-services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.main-services h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--clean-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid var(--accent-orange);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--clean-white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 133, 0, 0.3);
}

.service-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: center;
}

.service-card p {
    color: var(--dark-charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-charcoal);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.service-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.price-from {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-orange);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    opacity: 0.8;
}

.service-card .btn {
    width: 100%;
    text-align: center;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--clean-white);
}

.process-section h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.process-intro {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--clean-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: bold;
}

.step-content p {
    color: var(--dark-charcoal);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    background: var(--light-gray);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

/* Technology Section */
.tech-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.tech-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-info h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.tech-info p {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tech-features {
    display: grid;
    gap: 1.5rem;
}

.tech-feature h4 {
    color: var(--secondary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tech-feature p {
    color: var(--dark-charcoal);
    line-height: 1.5;
    font-size: 1rem;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-item {
    background: var(--clean-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.showcase-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.showcase-item h4 {
    color: var(--primary-navy);
    font-size: 1.1rem;
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--clean-white);
}

.pricing-section h2 {
    font-size: 2.8rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-intro {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-category {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.pricing-category:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-category h3 {
    font-size: 1.6rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-range {
    font-size: 2.2rem;
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.pricing-category ul {
    list-style: none;
    text-align: left;
}

.pricing-category li {
    padding: 0.5rem 0;
    color: var(--dark-charcoal);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-category li::before {
    content: '💎';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.pricing-note {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.pricing-note p {
    color: var(--dark-charcoal);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Services CTA */
.services-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--clean-white);
    text-align: center;
}

.services-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .overview-content h2,
    .main-services h2,
    .process-section h2,
    .tech-info h2,
    .pricing-section h2,
    .services-cta h2 {
        font-size: 2rem;
    }

    .service-card,
    .stat-item,
    .process-step,
    .pricing-category {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animation for service cards */
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process step animations */
.process-step {
    animation: slideInUp 0.8s ease-out;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.process-step:nth-child(4) {
    animation-delay: 0.6s;
} 