/* =====================================
   INVESTOR PAGE STYLES 
   ===================================== */

/* Investor Hero Section */
.investor_hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5298 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.investor_hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.investor_hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    font-family: var(--font-primary);
}

.investor_hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-family: var(--font-primary);
}

.investor_hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
}

.investor_hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.investor_btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px var(--shadow-secondary-color);
    font-family: var(--font-primary);
}

.investor_btn-primary:hover {
    background: var(--secondary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-secondary-color);
}

.investor_btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
}

.investor_btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Opportunity Section */
.investor_opportunity-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.investor_opportunity-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.investor_opportunity-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.investor_opportunity-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.investor_opportunity-stats {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-elevation-medium);
}

.investor_stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
    color: var(--white);
    transition: transform 0.3s ease;
}

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

.investor_stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.investor_stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    font-family: var(--font-body);
}

/* Market Section */
.investor_market-section {
    padding: 100px 0;
    background: var(--white);
}

.investor_market-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.investor_market-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.investor_market-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: var(--font-body);
}

.investor_market-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investor_highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    font-family: var(--font-body);
}

.investor_highlight-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.investor_market-chart {
    text-align: center;
}

.investor_market-chart img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px var(--shadow-elevation-medium);
    border-radius: 15px;
}

/* FAQ Section */
.investor_faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.investor_faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.investor_faq-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-family: var(--font-body);
}

.investor_faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-elevation-low);
}

.investor_faq-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.investor_faq-header:hover {
    background: var(--bg-slate-50);
}

.investor_faq-header[aria-expanded="true"] {
    background: var(--secondary-color);
    color: var(--white);
}

.investor_faq-header[aria-expanded="true"] .investor_faq-icon {
    transform: rotate(180deg);
    color: var(--white);
}

.investor_faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    font-family: var(--font-primary);
}

.investor_faq-icon {
    color: var(--secondary-color);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.investor_faq-answer {
    padding: 1.5rem 2rem;
    background: var(--bg-slate-50);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Form Section */
.investor_form-section {
    padding: 100px 0;
    background: var(--white);
}

.investor_form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px var(--shadow-elevation-medium);
    border: 1px solid var(--border-light);
}

.investor_form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.investor_form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.investor_form-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: var(--font-body);
}

.investor_form-section-title {
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.investor_form-section-title h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-family: var(--font-primary);
}

.investor_form-section-title i {
    color: var(--secondary-color);
}

.investor_form-group {
    margin-bottom: 1.5rem;
}

.investor_form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-family: var(--font-primary);
}

.investor_form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: var(--font-body);
}

.investor_form-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px var(--shadow-secondary-color);
    background: var(--white);
}

.investor_form-textarea {
    min-height: 120px;
    resize: vertical;
}

.investor_checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.investor_checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.investor_checkbox-item input[type="checkbox"] {
    margin: 0;
    width: auto;
    accent-color: var(--secondary-color);
}

.investor_checkbox-item label {
    margin: 0;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
}

.investor_form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.investor_form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: auto;
    accent-color: var(--secondary-color);
}

.investor_form-checkbox-label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.investor_form-checkbox-label a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.investor_form-checkbox-label a:hover {
    text-decoration: underline;
}

.investor_form-submit {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px var(--shadow-secondary-color);
    font-family: var(--font-primary);
}

.investor_form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-secondary-color);
    background: linear-gradient(135deg, var(--secondary-hover) 0%, #009c82 100%);
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
}

.alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border-left: 4px solid #16a34a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investor_hero-title {
        font-size: 2.5rem;
    }
    
    .investor_hero-subtitle {
        font-size: 1.2rem;
    }
    
    .investor_hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .investor_btn-primary,
    .investor_btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .investor_opportunity-section,
    .investor_market-section,
    .investor_faq-section,
    .investor_form-section {
        padding: 60px 0;
    }
    
    .investor_opportunity-title,
    .investor_market-title,
    .investor_faq-title,
    .investor_form-title {
        font-size: 2rem;
    }
    
    .investor_form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .investor_checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .investor_highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .investor_stat-number {
        font-size: 2rem;
    }
    
    .investor_faq-header {
        padding: 1rem 1.5rem;
    }
    
    .investor_faq-answer {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .investor_hero-section {
        padding: 60px 0;
    }
    
    .investor_hero-title {
        font-size: 2rem;
    }
    
    .investor_hero-subtitle {
        font-size: 1.1rem;
    }
    
    .investor_opportunity-stats {
        padding: 1.5rem;
    }
    
    .investor_stat-card {
        padding: 1rem;
    }
    
    .investor_form-container {
        padding: 1.5rem 1rem;
    }
}

/* Dark mode support (if implemented in the future) */
@media (prefers-color-scheme: dark) {
    .investor_form-input {
        background: var(--bg-slate-50);
        border-color: var(--border-slate-300);
        color: var(--text-dark);
    }
    
    .investor_form-input:focus {
        background: var(--white);
    }
}
