/* App Development Page Specific Styles */

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-option {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-option.popular {
    border-color: #4CAF50;
    transform: translateY(-5px);
}

.pricing-option.popular:hover {
    transform: translateY(-15px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features i {
    color: #4CAF50;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-outline:hover {
    background: #4CAF50;
    color: white;
}

/* Technology Stack Customization */
.tech-stack-section .tech-item i {
    color: #4CAF50;
}

.tech-stack-section .tech-category:hover {
    border-color: #4CAF50;
}

/* CTA Section Customization */
.cta-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .price .amount {
        font-size: 2rem;
    }
}