/* Page Specific Styles for Assets Page */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #10B981 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header h1,
.page-header h2,
.page-header p {
    color: white;
}

.page-header::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"><rect fill="%23ffffff10" width="50" height="50"/><rect fill="%23ffffff10" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 100px 100px;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Capacity Overview */
.capacity-overview {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.overview-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.overview-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.capacity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.capacity-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capacity-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.capacity-stat .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Equipment Fleet */
.equipment-fleet {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.fleet-categories {
    margin-top: 3rem;
}

.equipment-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-red);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    height: 250px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    position: relative;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.equipment-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem;
}

.equipment-info {
    padding: 2rem;
}

.equipment-info h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.equipment-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-item {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Financial Standing */
.financial-standing {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.financial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.financial-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.financial-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.growth-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    border-radius: 8px 8px 0 0;
    position: relative;
    min-height: 20px;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: scaleY(1.05);
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    transform-origin: left center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

.chart-bar.bar-20 { height: 20%; }
.chart-bar.bar-35 { height: 35%; }
.chart-bar.bar-40 { height: 40%; }
.chart-bar.bar-70 { height: 70%; }
.chart-bar.bar-100 { height: 100%; }

.financial-metrics h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.metric-grid {
    display: grid;
    gap: 1rem;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateX(5px);
}

.metric-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-value {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Maintenance Section */
.maintenance {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.maintenance-content {
    margin-top: 3rem;
}

.maintenance-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.maintenance-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
}

.maintenance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.maintenance-feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.maintenance-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-red-hover));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.maintenance-feature h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.maintenance-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .financial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .capacity-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .maintenance-features {
        grid-template-columns: 1fr;
    }

    .growth-chart {
        height: 150px;
    }

    .chart-bar span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .capacity-overview,
    .equipment-fleet,
    .financial-standing,
    .maintenance {
        padding: 60px 0;
    }

    .capacity-stats {
        grid-template-columns: 1fr;
    }

    .equipment-info,
    .maintenance-feature {
        padding: 1.5rem;
    }

    .growth-chart {
        height: 120px;
        gap: 0.5rem;
    }
}
