/* Maintenance Page Specific Styles */

body {
    background: #000000;
}

/* Maintenance Types */
.maintenance-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.maintenance-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.maintenance-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.maintenance-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.maintenance-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.maintenance-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.maintenance-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.maintenance-card li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.maintenance-card li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    color: #90ee90;
}

.price-tag {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 1rem;
}

/* Checklist Section */
.checklist-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.checklist-container {
    max-width: 1200px;
    margin: 0 auto;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.checklist-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-category h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.checklist-category ul {
    list-style: none;
}

.checklist-category li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.checklist-category li:before {
    content: "□ ";
    position: absolute;
    left: 0;
    color: #888;
    font-size: 1.2rem;
}

/* Benefit Card */
.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: #aaa;
}

/* Frequency Table */
.frequency-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    margin: 3rem 0;
}

.frequency-table table {
    width: 100%;
    border-collapse: collapse;
}

.frequency-table th {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frequency-table td {
    padding: 1.5rem;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.frequency-table tr:last-child td {
    border-bottom: none;
}

.frequency-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media (max-width: 768px) {
    .frequency-table {
        overflow-x: auto;
    }

    .frequency-table th,
    .frequency-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}
