/* ========================================
   CHECKLIST PAGE STYLES
   ======================================== */

.checklist-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-navy);
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2em;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.progress-container {
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-navy) 100%);
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-navy);
}

.checklist-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.checklist-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--medium-gray);
}

.checklist-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.checklist-section h2 {
    color: var(--primary-navy);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: var(--medium-gray);
    transform: translateX(5px);
}

.checklist-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item span {
    font-size: 1.05em;
    color: var(--dark-gray);
    line-height: 1.6;
}

.checklist-item input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    opacity: 0.6;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.reset-btn,
.print-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn {
    background: var(--medium-gray);
    color: var(--dark-gray);
}

.reset-btn:hover {
    background: var(--dark-gray);
    color: var(--white);
}

.print-btn {
    background: var(--primary-navy);
    color: var(--white);
}

.print-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-navy);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-box .cta-button {
    background: var(--accent-gold);
    color: var(--primary-navy);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .action-buttons,
    .cta-box,
    .progress-container {
        display: none;
    }
    
    .checklist-container {
        box-shadow: none;
    }
    
    .checklist-item {
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .checklist-container {
        padding: 25px;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .reset-btn,
    .print-btn {
        width: 100%;
    }
}