/* Guides Page Styles */

.guide-page {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    min-height: 100vh;
    padding-top: 2rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #047857;
}

.breadcrumb span {
    color: var(--foreground);
    font-weight: 500;
}

.guide-content {
    background: white;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.guide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.guide-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #f1f5f9;
}

.guide-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #047857;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.guide-subtitle {
    font-size: 1.3rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.guide-meta span {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #047857;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #10b981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-toc {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 2px solid #10b981;
}

.guide-toc h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guide-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.guide-toc li {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #d1fae5;
    transition: all 0.3s ease;
}

.guide-toc li:hover {
    transform: translateX(10px);
    border-color: #10b981;
}

.guide-toc a {
    display: block;
    padding: 1rem 1.5rem;
    color: #047857;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.guide-toc a:hover {
    color: #065f46;
    background: #f0fdf4;
}

.guide-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.guide-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #10b981;
}

.guide-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #059669;
    margin: 2.5rem 0 1.5rem;
}

.guide-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #047857;
    margin: 2rem 0 1rem;
}

.guide-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.guide-section ul,
.guide-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.guide-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid #10b981;
    transition: transform 0.3s ease;
}

.requirement-item:hover {
    transform: translateX(10px);
}

.req-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
    color: #10b981;
}

.requirement-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 0.75rem;
}

.requirement-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.warning-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box p {
    color: #7f1d1d;
    margin: 0;
    font-weight: 500;
}

.checklist {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #d1fae5;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.check {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.checklist-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 0.75rem;
}

.checklist-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.tool-example {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.tool-example h4 {
    color: #92400e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-example p {
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

.limit-guide {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.limit-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid #3b82f6;
}

.limit-item h4 {
    color: #3b82f6;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.limit-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sign-category {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-radius: 1rem;
    padding: 2rem;
    border-top: 4px solid #ea580c;
}

.sign-category h3 {
    color: #ea580c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sign-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sign-category li {
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    border-bottom: 1px solid rgba(234, 88, 12, 0.2);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
}

.sign-category li:before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 0.9rem;
}

.sign-category li:last-child {
    border-bottom: none;
}

.help-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.help-resource {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid #0ea5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-resource:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

.help-resource-icon {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1.5rem;
}

.help-resource h4 {
    color: #0369a1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-resource p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-contact {
    background: #0ea5e9;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.help-contact:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guide-content {
        padding: 2rem 1.5rem;
    }
    
    .guide-header h1 {
        font-size: 2.2rem;
    }
    
    .guide-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .guide-toc ul {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid,
    .warning-signs,
    .help-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist-item,
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .breadcrumb {
        padding: 1rem;
        font-size: 0.8rem;
    }
}