/* Reporting Page Styles */

.reporting-hero-section {
    background: linear-gradient(135deg, #0D6937 0%, #0a5028 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.reporting-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.reporting-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.reporting-title {
    font-size: 64px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reporting-bullet {
    color: #F4D03F;
    font-size: 1.2em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.reporting-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Reporting Content Section */
.reporting-content-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.reporting-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.reporting-year-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.reporting-year-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.reporting-year-header {
    width: 100%;
    background: #0D6937;
    color: #ffffff;
    border: none;
    padding: 25px 30px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.reporting-year-header:hover {
    background: #0a5028;
}

.reporting-year-item.active .reporting-year-header {
    background: #F4D03F;
    color: #0D6937;
}

.reporting-year-number {
    font-size: 32px;
}

.reporting-arrow {
    transition: transform 0.3s ease;
}

.reporting-year-item.active .reporting-arrow {
    transform: rotate(180deg);
}

.reporting-year-item.active .reporting-year-header .reporting-arrow {
    stroke: #0D6937;
}

.reporting-year-header .reporting-arrow {
    stroke: #ffffff;
}

.reporting-year-content {
    display: none;
    padding: 30px;
    background: #ffffff;
}

.reporting-year-item.active .reporting-year-content {
    display: block;
}

.reporting-documents {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reporting-document-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.reporting-document-link:hover {
    background: #F4D03F;
    border-color: #F4D03F;
    color: #0D6937;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.3);
}

.reporting-document-link svg:first-child {
    flex-shrink: 0;
    stroke: #0D6937;
}

.reporting-document-link:hover svg:first-child {
    stroke: #0D6937;
}

.reporting-document-link span {
    flex: 1;
}

.external-icon {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.reporting-document-link:hover .external-icon {
    opacity: 1;
}

.no-reports,
.no-reporting-data {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 18px;
}

.no-reporting-data {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .reporting-hero-section {
        padding: 60px 0 40px;
    }
    
    .reporting-title {
        font-size: 42px;
    }
    
    .reporting-subtitle {
        font-size: 16px;
    }
    
    .reporting-content-section {
        padding: 40px 0;
    }
    
    .reporting-year-header {
        padding: 20px 20px;
        font-size: 22px;
    }
    
    .reporting-year-number {
        font-size: 26px;
    }
    
    .reporting-year-content {
        padding: 20px;
    }
    
    .reporting-document-link {
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reporting-title {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    
    .reporting-year-header {
        padding: 15px;
        font-size: 20px;
    }
    
    .reporting-year-number {
        font-size: 24px;
    }
    
    .reporting-document-link {
        padding: 12px 15px;
        font-size: 14px;
        gap: 10px;
    }
    
    .reporting-document-link svg:first-child {
        width: 18px;
        height: 18px;
    }
}

