/* Investor Inquiry Page Styles */

/* Page Header */
.investor-header {
    background: #3b82f6;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.investor-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.header-badge i {
    margin-right: 8px;
    color: #fff;
}

.investor-header h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.investor-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Main Section */
.investor-section {
    padding: 60px 0;
    background: #f8fafc;
}

.investor-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.investor-section .row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -15px;
    align-items: flex-start;
}

.investor-section .col-lg-5,
.investor-section .col-lg-6 {
    padding: 0 15px;
}

.investor-section .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.investor-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.investor-section .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    display: flex;
    justify-content: center;
}

/* Investor Info Sidebar */
.investor-info {
    padding-right: 30px;
}

.investor-info h2 {
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Highlights Grid */
.highlights-grid {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6 !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.highlight-icon i {
    color: #fff !important;
    font-size: 1.25rem;
}

.highlight-item h4 {
    font-size: 1rem;
    color: #1a365d;
    margin: 0 0 5px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Stats Showcase */
.stats-showcase {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stats-showcase h3 {
    font-size: 1.125rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Contact CTA */
.contact-cta {
    background: #3b82f6;
    padding: 25px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
}

.contact-cta h4 {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-cta p {
    margin: 0 0 15px;
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-cta .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.contact-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Divider Line */
.divider-line {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
    height: 100%;
    min-height: 500px;
}

/* Form Container */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-container h3 i {
    margin-right: 10px;
    color: #3b82f6;
}

.form-intro {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-number {
    width: 28px;
    height: 28px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Form Elements */
.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.form-row .col-md-6 {
    flex: 1;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.required {
    color: #dc2626;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #3d7cb8;
    box-shadow: 0 0 0 3px rgba(61, 124, 184, 0.15);
    background: #fff;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a365d;
}

.checkbox-item span {
    font-size: 0.9rem;
    color: #4b5563;
}

/* Radio Group */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a365d;
}

/* NDA Checkbox */
.nda-checkbox {
    background: #fef3c7;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #fcd34d;
}

.nda-checkbox i {
    color: #d97706;
    margin-right: 5px;
}

/* Agreement Section */
.agreement-section .agreement-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    padding: 20px;
    border-radius: 12px;
}

.agreement-checkbox span {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #3b82f6;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.btn-submit:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-submit i {
    font-size: 1rem;
}

/* Form Disclaimer */
.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 20px;
    line-height: 1.5;
}

.form-disclaimer a {
    color: #1a365d;
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-danger ul {
    margin: 0;
    padding-left: 20px;
}

/* Form Helper Text */
.form-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 5px;
}

.text-muted {
    color: #9ca3af;
}

/* Invalid Feedback */
.invalid-feedback {
    display: none;
    font-size: 0.8rem;
    color: #dc2626;
    margin-top: 5px;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc2626;
}

/* Success Page Styles */
.success-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.success-card {
    background: #fff;
    width: 100%;
    max-width: 700px;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 3rem;
    color: #fff;
}

.success-card h1 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-card .lead {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.inquiry-reference {
    background: #f0f9ff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px dashed #3d7cb8;
}

.inquiry-reference .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 8px;
}

.inquiry-reference .number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a365d;
    letter-spacing: 2px;
}

.inquiry-reference .note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 10px;
}

.confirmation-message {
    text-align: left;
    margin-bottom: 40px;
}

.confirmation-message h3 {
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
}

.steps-timeline {
    position: relative;
}

.steps-timeline .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.steps-timeline .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50px;
    width: 2px;
    height: calc(100% - 25px);
    background: #e2e8f0;
}

.step-icon {
    width: 45px;
    height: 45px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    z-index: 1;
}

.step-icon i {
    color: #fff;
    font-size: 1rem;
}

.step-content h4 {
    font-size: 1rem;
    color: #1a365d;
    margin: 0 0 5px;
    font-weight: 600;
}

.step-content p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.contact-info-box {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.contact-info-box h4 {
    font-size: 1rem;
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-info-box > p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.contact-method:hover {
    background: #1a365d;
    color: #fff;
    border-color: #1a365d;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.action-buttons .btn-primary {
    background: #3b82f6;
    color: #fff;
    border: none;
}

.action-buttons .btn-primary:hover {
    background: #2563eb;
}


.action-buttons .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.action-buttons .btn-outline:hover {
    background: #3b82f6;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .investor-section .row {
        flex-wrap: wrap;
    }
    
    .investor-section .col-lg-5,
    .investor-section .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .investor-section .col-lg-1 {
        display: none;
    }
    
    .investor-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .form-container {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .investor-header {
        padding: 60px 0;
    }
    
    .investor-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .checkbox-group {
        flex-direction: column;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .inquiry-reference .number {
        font-size: 1.25rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
