/* SEO Checklist Page Styles */
:root {
    --primary-color: #ff7a59;
    --secondary-color: #ff8f73;
    --bg-color: #fff9f5;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

.seo-checklist-hero {
    background: linear-gradient(135deg, var(--bg-color) 0%, #ffffff 100%);
    padding: 80px 0 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.seo-checklist-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
}

.seo-checklist-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.checklist-section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.checklist-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--primary-color);
    background: var(--bg-color);
}

.checklist-item.completed {
    background: #f8f9fa;
    border-color: var(--success-color);
}

.checklist-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 15px;
    margin-top: 2px;
    cursor: pointer;
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.checklist-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checklist-priority {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
}

.priority-high {
    background: #ffebee;
    color: #c62828;
}

.priority-medium {
    background: #fff3e0;
    color: #ef6c00;
}

.priority-low {
    background: #e8f5e8;
    color: #2e7d32;
}

.tools-section {
    background: var(--light-bg);
    padding: 50px 0;
    margin-top: 50px;
}

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

.tool-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.tool-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-tool {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-tool:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.reset-btn {
    background: #f8f9fa;
    color: #6c757d;
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #dee2e6;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.reset-btn:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .seo-checklist-title {
        font-size: 2rem;
    }
    
    .checklist-section {
        padding: 20px;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}