/* Portfolio Page Styles */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 20px; 
    background: #f5f5f5; 
}

.container {
    max-width: 1200px; 
    margin: 0 auto;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); 
    color: white; 
    padding: 40px; 
    text-align: center; 
    border-radius: 10px; 
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.projects-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: white; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.project-image {
    height: 200px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-size: 1.5em;
    font-weight: bold;
}

.project-image.ecommerce {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.project-image.mobile {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.project-image.vitrine {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
}

.project-image.erp {
    background: linear-gradient(45deg, #fd7e14, #dc3545);
}

.project-image.restaurant {
    background: linear-gradient(45deg, #20c997, #17a2b8);
}

.project-image.elearning {
    background: linear-gradient(45deg, #17a2b8, #6f42c1);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.project-content p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5;
}

.project-content strong {
    color: #1a1a1a;
}

.price-badge {
    padding: 8px 15px; 
    border-radius: 20px; 
    display: inline-block; 
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 10px;
}

.price-badge.starter {
    background: #007bff; 
    color: white;
}

.price-badge.standard {
    background: #28a745; 
    color: white;
}

.price-badge.advanced {
    background: #ffc107; 
    color: black;
}

.price-badge.premium {
    background: #dc3545; 
    color: white;
}

.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); 
    color: white; 
    padding: 50px 20px; 
    text-align: center; 
    border-radius: 10px; 
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-button {
    padding: 15px 30px; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: bold; 
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary {
    background: white; 
    color: #007bff;
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2); 
    color: white;
}

.testimonials-section {
    background: white; 
    padding: 40px; 
    border-radius: 10px; 
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonials-section h2 {
    text-align: center; 
    margin-bottom: 30px;
    color: #1a1a1a;
    font-size: 2em;
}

.testimonials-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
}

blockquote {
    border-left: 4px solid #007bff; 
    padding-left: 20px; 
    font-style: italic;
    margin: 0;
}

blockquote.standard {
    border-left-color: #28a745;
}

blockquote.advanced {
    border-left-color: #ffc107;
}

blockquote footer {
    margin-top: 10px; 
    font-weight: bold;
    font-style: normal;
    color: #666;
}

/* SEO Notice */
.seo-notice {
    background: rgba(0,123,255,0.1); 
    padding: 15px; 
    border-radius: 8px; 
    margin-top: 20px; 
    font-size: 0.9em;
    border-left: 4px solid #007bff;
}

.seo-notice p {
    margin: 0; 
    color: #0066cc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    header {
        padding: 30px 20px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-button {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
    
    .testimonials-section {
        padding: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}