:root {
    --primary-color: #1976d2;
    --secondary-color: #dc004e;
    --background-color: #f5f5f5;
    --text-color: #333;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.header {
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    max-height: 60px;
}

.hero-section {
    background: linear-gradient(rgba(25, 118, 210, 0.9), rgba(21, 101, 192, 0.9)),
                url('../img/hero-bg.jpg') center/cover;
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.services-section {
    padding: 4rem 0;
    background: white;
}

.service-card {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.col-md-3 {
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-pending { background-color: #ffd700; color: #000; }
.status-diagnosed { background-color: #87ceeb; color: #000; }
.status-in-repair { background-color: #1976d2; color: #fff; }
.status-testing { background-color: #9c27b0; color: #fff; }
.status-ready { background-color: #ff9800; color: #fff; }
.status-completed { background-color: #4caf50; color: #fff; }
.status-cancelled { background-color: #f44336; color: #fff; }

.repair-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline-item {
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
} 