/* Services Page Specific Styles */

/* Page Header */
.page-header {
    background: var(--gradient);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--text-white);
    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"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
}

.service-detail.alt-bg {
    background: var(--bg-secondary);
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Service Info */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    margin-bottom: 30px;
}

.service-badge i {
    font-size: 1.2rem;
}

.service-info h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    background: var(--primary-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-detail.alt-bg .feature-item {
    background: var(--primary-color);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-item i {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.feature-item h4 {
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-item p {
    color: var(--text-white);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    margin-top: 60px;
}

.process-steps h3 {
    margin-bottom: 40px;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
}

/* Service Benefits */
.service-benefits {
    margin-top: 60px;
}

.service-benefits h3 {
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit p {
    color: var(--text-light);
}

/* Marketing Approach */
.marketing-approach {
    margin-top: 60px;
}

.marketing-approach h3 {
    margin-bottom: 30px;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-detail.alt-bg .approach-item {
    background: white;
}

.approach-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    color: var(--text-white);
    font-size: 1.2rem;
}

.approach-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.approach-item p {
    color: var(--text-light);
    margin: 0;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: var(--gradient);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    color: var(--text-white);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(165, 0, 0, 0.3);
}

/* Remove the gradient border since we're using gradient background */
.pricing-card::before {
    display: none;
}

.pricing-card h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-card > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-white);
    position: relative;
    padding-left: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Pricing card button styling for better contrast on red background */
.pricing-card .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--text-white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary:hover {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.pricing-features li::before {
    content: '';
    /* Removed checkmark since we're using emojis now */
}

.tech-stack {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.tech-stack h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: var(--gradient);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Why Services Section */
.why-services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.why-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.why-item h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .header-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .service-info h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        display: none;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
    }
    
    .approach-item:hover {
        transform: translateY(-5px);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 30px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .service-detail {
        padding: 60px 0;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .tech-stack {
        padding: 20px;
    }
    
    .why-item {
        padding: 30px 20px;
    }
}