/* Réparation Page Specific Styles */

body {
    background: #000000;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #aaa;
    line-height: 1.7;
}

/* Diagnostic Section */
.diagnostic-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.diagnostic-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.diagnostic-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 800px;
}

.diagnostic-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.diagnostic-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.diagnostic-feature {
    padding: 1.5rem;
}

.diagnostic-feature span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Repairs List */
.repairs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.repair-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.repair-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.repair-item p {
    color: #aaa;
    margin-bottom: 1rem;
}

.repair-price {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, rgba(100, 255, 100, 0.05), rgba(50, 200, 50, 0.02));
    border: 1px solid rgba(100, 255, 100, 0.2);
    border-radius: 16px;
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.guarantee-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #90ee90;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-item {
    padding: 1.5rem;
}

.guarantee-item span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: #aaa;
    font-size: 0.95rem;
}
