/* Custom Web Development Page - Additional Styles */
/* This file extends the main styles.css with custom page-specific styles */

/* Override page header for custom styling */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: var(--primary-white);
    padding: 100px 0;
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.page-header p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.breadcrumb a:hover {
    color: var(--primary-white);
}

/* Custom Services Section */
.custom-services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.custom-service-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.custom-service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.custom-service-card p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.service-features i {
    color: #059669;
    font-size: 0.875rem;
}

/* Enhanced Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #2563eb;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 2px;
    background: var(--border-gray);
    transform: translateY(-50%);
}

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

.step-content h3 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Enhanced Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.pricing-card {
    background: var(--primary-white);
    border-radius: 1rem;
    box-shadow: 0 4px 20px var(--shadow-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-gray);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--shadow-gray);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1.5rem;
    right: -30px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 2;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-gray);
}

.pricing-header h3 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.price-unit {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.pricing-header p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

/* Enhanced CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.cta-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .custom-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .custom-service-card,
    .process-step,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}
