/* ================================
   GOVERNANCE STYLES - Modern Design
   ================================ */

/* Page Subtitle */
.page-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

/* Governance Container */
.governance-container {
    margin-top: 2rem;
}

/* Governance Grid */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.governance-grid-item {
    position: relative;
}

/* Governance Card */
.governance-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.governance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0a5d2a, #047230);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.governance-card:hover::before {
    opacity: 1;
}

.governance-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 114, 50, 0.15);
    border-color: var(--primary);
}

.governance-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
}

.governance-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(13, 114, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.governance-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.governance-card:hover .governance-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.governance-badge {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.governance-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 114, 50, 0.1), transparent);
    transition: left 0.5s ease;
}

.governance-card:hover .governance-badge::before {
    left: 100%;
}

.governance-card-body {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.governance-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.governance-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #0a5d2a);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.governance-card:hover .governance-title::after {
    width: 100%;
}

.governance-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.governance-meta span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #718096;
    padding: 0.5rem 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.governance-meta span:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

.governance-meta i {
    font-size: 1rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.governance-card-footer {
    padding: 1rem 2rem 2rem;
    margin-top: auto;
}

.governance-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.governance-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.governance-btn:hover::before {
    left: 100%;
}

.governance-btn:hover {
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 114, 50, 0.3);
}

.governance-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.governance-btn:hover i {
    transform: translateX(-5px);
}

/* Governance Show Page */
.governance-show-header {
    margin-bottom: 4rem;
}

.governance-breadcrumb {
    margin-bottom: 2rem;
}

.governance-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fffe, #f0f9f6);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.governance-breadcrumb a:hover {
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 114, 50, 0.3);
}

.governance-show-title {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 50%, #e8f5f0 100%);
    border-radius: 20px;
    border: 2px solid #e9ecef;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.governance-show-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #0a5d2a, #047230);
}

.governance-show-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: 0 12px 30px rgba(13, 114, 50, 0.3);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.governance-show-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.governance-show-info {
    flex-grow: 1;
}

.governance-show-info .page-title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: right;
    background: linear-gradient(135deg, #2d3748, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.governance-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.year-badge {
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(13, 114, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.year-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: slide 2s ease-in-out infinite;
}

@keyframes slide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.files-count {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.created-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    background: #f8f9fa;
    border-radius: 25px;
    border: 1px solid #e9ecef;
}

/* Files Section */
.governance-files-section {
    margin-top: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0a5d2a);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #2d3748, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #718096;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Files Grid */
.governance-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* File Card */
.governance-file-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.governance-file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c757d, #495057);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.governance-file-card:hover::before {
    opacity: 1;
}

.governance-file-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.file-card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.file-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
    position: relative;
    overflow: hidden;
}

.file-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.governance-file-card:hover .file-icon::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.file-type-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.file-card-body {
    padding: 1.5rem 2rem;
}

.file-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.file-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #718096;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.file-card-actions {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.file-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.file-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.file-action-btn:hover::before {
    left: 100%;
}

.view-btn {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    border-color: #17a2b8;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.view-btn:hover {
    background: transparent;
    color: #17a2b8;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.3);
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(13, 114, 50, 0.3);
}

.download-btn:hover {
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 114, 50, 0.3);
}

/* No Files Message */
.no-files-message {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px dashed #dee2e6;
    position: relative;
    overflow: hidden;
}

.no-files-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dee2e6, #adb5bd);
}

.no-files-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 40px;
    color: #6c757d;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.no-files-message h3 {
    color: #495057;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.no-files-message p {
    color: #6c757d;
    margin: 0;
    font-size: 1.1rem;
}

/* Pagination */
.governance-pagination {
    margin-top: 4rem;
    text-align: center;
}

/* ================================
   GOVERNANCE INDEX PAGE STYLES
   ================================ */

/* Hero Section */
.governance-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 50%, #e8f5f0 100%);
    border-radius: 25px;
    margin-bottom: 4rem;
    overflow: hidden;
}

.governance-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.governance-hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 48px;
    color: white;
    box-shadow: 0 15px 40px rgba(13, 114, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.governance-hero-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: heroIconRotate 4s linear infinite;
}

@keyframes heroIconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.governance-hero .page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2d3748, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.governance-hero .page-subtitle {
    font-size: 1.3rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.governance-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.3;
}

/* Hero Decorations */
.governance-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 114, 50, 0.1), rgba(13, 114, 50, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Index Container */
.governance-index-container {
    position: relative;
}

/* Empty State */
.governance-empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.empty-state-animation {
    position: relative;
    margin-bottom: 2rem;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 48px;
    color: #6c757d;
    animation: pulse 2s ease-in-out infinite;
}

.empty-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    animation-delay: 0s;
    left: -40px;
}

.particle:nth-child(2) {
    animation-delay: 1s;
    right: -40px;
}

.particle:nth-child(3) {
    animation-delay: 2s;
    top: -40px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-20px); }
}

/* Filters Section */
.governance-filters {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.filter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-header h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.filter-header p {
    color: #718096;
    font-size: 1.1rem;
}

.filter-options {
    display: flex;
    justify-content: center;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.year-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: #fff;
    border-radius: 25px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(13, 114, 50, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 114, 50, 0.2);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

/* Main Content */
.governance-main-content {
    margin-bottom: 4rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-title h2 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.results-count {
    color: #718096;
    font-size: 1rem;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e9ecef;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    font-size: 18px;
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(13, 114, 50, 0.05);
}

/* Enhanced Grid Animation */
.governance-grid-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Access Section */
.governance-quick-access {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
    border-radius: 25px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.governance-quick-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0a5d2a, #047230);
}

.quick-access-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-access-header h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.quick-access-header p {
    color: #718096;
    font-size: 1.1rem;
}

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

.quick-access-item {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-access-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 114, 50, 0.15);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #0a5d2a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(13, 114, 50, 0.3);
}

.quick-access-item h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.quick-access-item p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

/* Background Elements */
.governance-bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 114, 50, 0.03), rgba(13, 114, 50, 0.01));
    animation: bgFloat 20s ease-in-out infinite;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 7s;
}

.bg-shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Enhanced Pagination */
.governance-pagination {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pagination-info {
    margin-bottom: 1.5rem;
}

.pagination-info p {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .governance-hero {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }
    
    .governance-hero-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .governance-hero .page-title {
        font-size: 2.2rem;
    }
    
    .governance-hero .page-subtitle {
        font-size: 1.1rem;
    }
    
    .governance-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary), transparent);
    }
    
    .governance-filters {
        padding: 2rem;
    }
    
    .year-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .content-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .governance-card-header,
    .governance-card-body,
    .governance-card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .governance-show-title {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .governance-show-icon {
        margin: 0 auto;
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .governance-show-info .page-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .governance-show-meta {
        justify-content: center;
    }
    
    .governance-files-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .file-card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .file-card-header,
    .file-card-body,
    .file-card-actions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .no-files-message {
        padding: 3rem 2rem;
    }
    
    .no-files-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .governance-card-header,
    .governance-card-body,
    .governance-card-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .governance-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .governance-title {
        font-size: 1.2rem;
    }
    
    .file-card-header,
    .file-card-body,
    .file-card-actions {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .file-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
} 