/* SEO Roadmap Styles for Sama Electec */
:root {
    --primary-color: #0c4da2;
    --secondary-color: #ffc107;
    --accent-color: #d39e00;
    --text-color: #333;
    --bg-light: #f8faff;
    --white: #ffffff;
    --success: #28a745;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 15px 35px rgba(12, 77, 162, 0.1);
}

.seo-page {
    background: linear-gradient(135deg, #f8faff 0%, #e8efff 100%);
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
}

.seo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-header {
    text-align: center;
    margin-bottom: 50px;
}

.seo-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.roadmap-timeline {
    position: relative;
}

.month-section {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--primary-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.month-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(12, 77, 162, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.month-section:nth-child(2) { animation-delay: 0.2s; }
.month-section:nth-child(3) { animation-delay: 0.4s; }

.month-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.month-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.checklist-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.checkbox-dummy {
    min-width: 28px;
    height: 28px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 5px;
    position: relative;
    background: white;
}

.checkbox-dummy::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.checklist-item:hover .checkbox-dummy::after {
    opacity: 0.5;
}

.item-text h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.item-text p {
    color: #666;
    line-height: 1.5;
}

.local-focus {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--secondary-color);
}

.local-focus h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.local-focus p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.seo-footer-note {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .seo-header h1 {
        font-size: 2rem;
    }
    
    .month-section {
        padding: 30px 20px;
    }
    
    .month-title {
        font-size: 1.5rem;
    }
}
