/* ========================================
   PREPARE DOCUMENTS PAGE STYLES
   ======================================== */

/* Main Container */
.documents-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Header Section */
.documents-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
}

.documents-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.documents-header .intro-text {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Documents Section */
.documents-section {
    margin-bottom: 4rem;
}

.documents-section h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Document Categories */
.document-category {
    margin-bottom: 3rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #667eea;
}

.document-category h3 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Document List */
.document-list {
    display: grid;
    gap: 1.5rem;
}

.document-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.document-item h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.document-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.requirement {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.requirement:contains("Required") {
    background: #d4edda;
    color: #155724;
}

.document-item .requirement {
    background: #fff3cd;
    color: #856404;
}

.document-item:has(.requirement:contains("Required")) .requirement {
    background: #d4edda;
    color: #155724;
}

/* Special Situations */
.special-situations {
    margin-bottom: 4rem;
}

.special-situations h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.situation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.situation-card {
    background: #fff5f5;
    border: 2px solid #feb2b2;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.situation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(254, 178, 178, 0.3);
}

.situation-card h3 {
    color: #c53030;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.situation-card p {
    color: #666;
    line-height: 1.6;
}

/* Preparation Tips */
.preparation-tips {
    margin-bottom: 4rem;
}

.preparation-tips h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: #f0fff4;
    border: 2px solid #9ae6b4;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(154, 230, 180, 0.3);
}

.tip-card h3 {
    color: #38a169;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Action Section */
.action-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.action-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.action-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.prepare-documents-page .primary-btn, .prepare-documents-page .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.prepare-documents-page .primary-btn {
    background: white;
    color: #667eea;
}

.prepare-documents-page .primary-btn:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.prepare-documents-page .secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .documents-container {
        padding: 0 1rem;
    }
    
    .documents-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .documents-header h1 {
        font-size: 2rem;
    }
    
    .documents-header .intro-text {
        font-size: 1rem;
    }
    
    .documents-section h2,
    .special-situations h2,
    .preparation-tips h2 {
        font-size: 2rem;
    }
    
    .document-category {
        padding: 1.5rem;
    }
    
    .situation-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .action-section {
        padding: 2rem 1.5rem;
    }
    
    .action-content h2 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .prepare-documents-page .primary-btn, .prepare-documents-page .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .documents-header h1 {
        font-size: 1.8rem;
    }
    
    .documents-section h2,
    .special-situations h2,
    .preparation-tips h2 {
        font-size: 1.8rem;
    }
    
    .document-category h3 {
        font-size: 1.5rem;
    }
    
    .document-item h4 {
        font-size: 1.2rem;
    }
    
    .situation-card h3,
    .tip-card h3 {
        font-size: 1.2rem;
    }
}
