/* Planning Checklist Page Specific Styles */

.checklist-main {
    background: white;
}

.checklist-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.checklist-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.checklist-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.checklist-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.overview-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.overview-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.download-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.download-options .btn-primary,
.download-options .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.download-options .btn-primary {
    background: white;
    color: #667eea;
}

.download-options .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.download-options .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.download-options .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Timeline Overview */
.timeline-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

/* Timeline Checklist */
.timeline-checklist {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border: 15px solid transparent;
    border-right-color: white;
}

.timeline-marker {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid white;
    box-shadow: 0 0 0 4px #f8f9fa;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -50px;
}

.timeline-period {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-items li::before {
    content: '☐';
    font-size: 1.2rem;
    color: #667eea;
}

.checklist-items li.completed::before {
    content: '☑';
    color: #4CAF50;
}

/* Interactive Checklist */
.interactive-checklist {
    padding: 80px 0;
    background: white;
}

.checklist-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #667eea;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    font-size: 1.5rem;
}

.interactive-items {
    list-style: none;
    padding: 0;
}

.interactive-items li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-items li:hover {
    background: rgba(102,126,234,0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.interactive-items li:last-child {
    border-bottom: none;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox.checked {
    background: #667eea;
    color: white;
}

.checkbox.checked::after {
    content: '✓';
    font-size: 0.8rem;
    font-weight: bold;
}

/* Progress Tracker */
.progress-tracker {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
}

.progress-overview {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.progress-stat {
    text-align: center;
}

.progress-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.progress-label {
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Detailed Checklist Section */
.detailed-checklist {
    padding: 80px 0;
    background: #f8f9fa;
}

.detailed-checklist h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.checklist-phase {
    background: white;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.checklist-phase h3 {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.checklist-item {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item:hover {
    background-color: #f8f9fa;
}

.checklist-item input[type="checkbox"] {
    margin-right: 15px;
    transform: scale(1.2);
    accent-color: #667eea;
}

.checklist-item label {
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.4;
}

.item-details {
    margin-top: 15px;
    padding-left: 35px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Safety Reminders Section */
.safety-reminders {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.safety-reminders h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.safety-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-left: 5px solid #e53e3e;
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.safety-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.safety-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Professional Help Section */
.professional-help {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.professional-help h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.help-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.help-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.professional-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.scenario {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #3182ce;
}

.scenario h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.scenario p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.professional-benefits {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.professional-benefits h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.professional-benefits ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.professional-benefits li {
    padding: 10px 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.professional-benefits li:before {
    content: "✓";
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checklist-hero h1 {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
    
    .timeline-content::after {
        left: -15px !important;
        right: auto !important;
        border-left-color: transparent !important;
        border-right-color: white !important;
    }
    
    .checklist-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .progress-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .checklist-hero {
        padding: 60px 0;
    }
    
    .checklist-hero h1 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .progress-overview {
        padding: 30px 20px;
    }
    
    .progress-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
