/* Capabilities Page Styles */
.main-capabilities {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    padding: 60px 0;
}

/* Region Navigation */
.region-navigation {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.region-nav-item {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.region-nav-item:last-child {
    border-bottom: none;
}

.region-nav-item a {
    color: #333;
    text-decoration: none;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.region-nav-item:hover {
    background-color: #e9ecef;
}

.region-nav-item.active {
    background-color: #255c48;
}

.region-nav-item.active a {
    color: #fff;
}

/* Industry Navigation Specific */
.industry-navigation {
    max-height: 500px;
    overflow-y: auto;
}

.industry-navigation::-webkit-scrollbar {
    width: 4px;
}

.industry-navigation::-webkit-scrollbar-thumb {
    background-color: #adb5bd;
    border-radius: 4px;
}

.industry-navigation::-webkit-scrollbar-track {
    background-color: #f8f9fa;
}

/* Industry Insights */
.industry-insight-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid #255c48;
}

.industry-insight-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.insight-icon {
    font-size: 1.8rem;
    color: #255c48;
    margin-right: 15px;
    flex-shrink: 0;
}

.insight-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.insight-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Region Map */
.map-container {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
}

.world-map {
    position: relative;
}

.overlay-text {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

/* Region Stats */
.stat-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Capabilities Content */
.capabilities-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.capabilities-header .lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Region Expertise */
.expertise-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.expertise-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.expertise-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Recent Transactions */
.recent-transactions h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.sort-options {
    align-items: center;
    font-size: 0.95rem;
    color: #666;
}

.sort-button {
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sort-button a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.sort-button.active {
    background-color: #255c48;
}

.sort-button.active a {
    color: #fff;
}

/* Transaction Items */
.transaction-list {
    margin-top: 30px;
}

.transaction-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.transaction-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #e9ecef;
    color: #333;
}

.transaction-date {
    display: flex;
    flex-direction: column;
}

.date {
    font-weight: 600;
    font-size: 1rem;
}

.status {
    font-size: 0.85rem;
    color: #6c757d;
}

.transaction-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    background-color: #d1e7dd;
    padding: 6px 12px;
    border-radius: 4px;
}

.transaction-details {
    padding: 25px;
}

.company-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.flag {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #333;
}

.japan-flag {
    color: #bc002d;
}

.uk-flag {
    color: #012169;
}

.company .label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.company .name {
    font-weight: 600;
    color: #333;
}

.transaction-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.view-more {
    margin-top: 40px;
}

.btn-outline-secondary {
    color: #333;
    border-color: #ced4da;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #255c48;
    color: #fff;
    border-color: #255c48;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .region-navigation {
        margin-bottom: 30px;
    }
    
    .region-map {
        display: none;
    }
    
    .region-stats {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }
    
    .stat-card {
        flex: 1;
    }
    
    .expertise-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .main-capabilities {
        padding: 40px 0;
    }
    
    .transaction-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .transaction-amount {
        margin-top: 10px;
    }
    
    .company-info {
        margin-bottom: 20px;
    }
    
    .capabilities-header h2 {
        font-size: 2rem;
    }
    
    .recent-transactions h3 {
        font-size: 1.8rem;
    }
    
    .expertise-icon {
        font-size: 2rem;
    }
    
    .industry-insight-card {
        padding: 15px;
    }
    
    .insight-icon {
        font-size: 1.5rem;
    }
} 