/* Incorporation Section Styles */
#incorporation-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}

.incorporation-dashboard {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.incorporation-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.incorporation-header .subtitle {
    color: #666;
    font-size: 1.1rem;
}

.incorporation-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.company-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
    border: 2px dashed #ddd;
}

.upload-logo-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.upload-logo-btn:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.incorporation-form {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.save-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.save-btn:hover {
    background: #5a67d8;
}

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

.status-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #ddd;
}

.status-item.active {
    border-left-color: #48bb78;
}

.status-item .icon {
    font-size: 1.5rem;
    color: #666;
}

.status-item.active .icon {
    color: #48bb78;
}

.status-item .info {
    display: flex;
    flex-direction: column;
}

.status-item .label {
    font-size: 0.85rem;
    color: #888;
}

.status-item .value {
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .incorporation-card {
        flex-direction: column;
        align-items: center;
    }
    
    .incorporation-form {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* ==========================================
   DARK MODE STYLES
   ========================================== */

body.dark-mode #incorporation-section {
    background: #0a0a0a;
    color: #e5e5e5;
}

body.dark-mode .incorporation-header h2 {
    color: #e5e5e5;
}

body.dark-mode .incorporation-header .subtitle {
    color: #a3a3a3;
}

body.dark-mode .incorporation-card {
    background: #171717;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .company-logo-section .logo-placeholder {
    background: #121212;
    color: #525252;
    border-color: #262626;
}

body.dark-mode .upload-logo-btn {
    background: #171717;
    border-color: #262626;
    color: #e5e5e5;
}

body.dark-mode .upload-logo-btn:hover {
    background: #1a1a1a;
    border-color: #404040;
}

body.dark-mode .form-group label {
    color: #a3a3a3;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #121212;
    border-color: #262626;
    color: #e5e5e5;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #525252;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

body.dark-mode .save-btn {
    background: #667eea;
    color: white;
}

body.dark-mode .save-btn:hover {
    background: #5a67d8;
}

body.dark-mode .status-item {
    background: #171717;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border-left-color: #262626;
}

body.dark-mode .status-item.active {
    border-left-color: #48bb78;
}

body.dark-mode .status-item .icon {
    color: #737373;
}

body.dark-mode .status-item.active .icon {
    color: #48bb78;
}

body.dark-mode .status-item .label {
    color: #737373;
}

body.dark-mode .status-item .value {
    color: #e5e5e5;
}
