/* Investments Page Specific Styles */

/* Investment Strategy Section */
.investment-strategy {
    padding: 80px 30px;
    background-color: #ffffff;
}

.strategy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.strategy-item {
    text-align: center;
    padding: 40px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    border-color: #BB1717;
    box-shadow: 0 8px 25px rgba(187, 23, 23, 0.15);
    transform: translateY(-3px);
}

.strategy-icon {
    margin-bottom: 25px;
}

.strategy-icon .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #BB1717 0%, #8B0000 100%);
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(187, 23, 23, 0.3);
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
}

.strategy-icon .icon-circle svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.strategy-item h3 {
    font-size: 22px;
    font-weight: bold;
    color: #BB1717;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.strategy-item p {
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
}

/* Investment Criteria Section */
.investment-criteria {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.criteria-content {
    max-width: 1200px;
    margin: 0 auto;
}

.criteria-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.criteria-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.criteria-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.criteria-item:hover {
    border-color: #BB1717;
    box-shadow: 0 5px 20px rgba(187, 23, 23, 0.1);
    transform: translateY(-2px);
}

.criteria-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #BB1717;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.criteria-item ul {
    list-style: none;
    padding-left: 0;
}

.criteria-item li {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.criteria-item li::before {
    content: '▶';
    color: #BB1717;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 2px;
}

.criteria-sidebar {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #BB1717;
    box-shadow: 0 5px 20px rgba(187, 23, 23, 0.1);
    height: fit-content;
}

.investment-ranges h3 {
    font-size: 22px;
    font-weight: bold;
    color: #BB1717;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-align: center;
}

.range-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.range-item:last-child {
    border-bottom: none;
}

.stage {
    font-weight: bold;
    color: #333333;
    font-size: 14px;
}

.amount {
    font-weight: bold;
    color: #BB1717;
    font-size: 14px;
}

/* Due Diligence Process Section */
.due-diligence {
    padding: 80px 30px;
    background-color: #ffffff;
}

.dd-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 8px;
    border-left: 4px solid #BB1717;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    box-shadow: 0 5px 20px rgba(187, 23, 23, 0.1);
    transform: translateX(5px);
}

.timeline-number {
    font-size: 28px;
    font-weight: bold;
    color: #BB1717;
    background: linear-gradient(135deg, rgba(187, 23, 23, 0.1) 0%, rgba(187, 23, 23, 0.05) 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(187, 23, 23, 0.3);
    min-width: 60px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.timeline-content p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 15px;
}

.timeline-duration {
    font-size: 12px;
    color: #BB1717;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Added Services Section */
.value-added {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.value-content {
    max-width: 1000px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-service {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-service:hover {
    border-color: #BB1717;
    box-shadow: 0 5px 20px rgba(187, 23, 23, 0.1);
    transform: translateY(-2px);
}

.value-service h3 {
    font-size: 18px;
    font-weight: bold;
    color: #BB1717;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-service p {
    color: #666666;
    line-height: 1.7;
    font-size: 14px;
}

/* Investment CTA Section */
.investment-cta {
    padding: 80px 30px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design for Investments Page */
@media (max-width: 1024px) {
    .strategy-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .criteria-main {
        grid-template-columns: 1fr;
    }
    
    .criteria-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .investment-strategy,
    .investment-criteria,
    .due-diligence,
    .value-added,
    .investment-cta {
        padding: 60px 20px;
    }
    
    .strategy-item,
    .criteria-item,
    .value-service {
        padding: 25px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px;
    }
    
    .timeline-number {
        align-self: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .investment-strategy,
    .investment-criteria,
    .due-diligence,
    .value-added,
    .investment-cta {
        padding: 40px 15px;
    }
    
    .cta-content h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .strategy-item h3,
    .criteria-item h3 {
        font-size: 18px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
}
