/* Innovation Details Page - Professional Design */
:root {
    --primary-color: #0056bc;
    --primary-dark: #004494;
    --primary-light: #0078e6;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Global Styles */
body {
    font-family: 'IRANSans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}
/* Quick Actions Container */
.quick-actions-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-action-item:hover {
    transform: translateY(-2px);
}

.quick-action-item.primary-action {
    order: -1;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: none;
    background: none;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-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.6s ease;
}

.quick-action-btn:hover::before {
    left: 100%;
}

/* Primary Button */
.quick-action-btn.primary-btn {
    background: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 86, 188, 0.3);
    border: 2px solid #0056bc;
}

.quick-action-btn.primary-btn:hover {
    background: linear-gradient(135deg, #004494 0%, #0056bc 100%);
    box-shadow: 0 12px 35px rgba(0, 86, 188, 0.4);
    transform: translateY(-3px);
    color: white;
}

.quick-action-btn.primary-btn .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Secondary Button */
.quick-action-btn.secondary-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quick-action-btn.secondary-btn:hover {
    background: linear-gradient(135deg, #f8faff 0%, #e5e7eb 100%);
    border-color: #0056bc;
    color: #0056bc;
    box-shadow: 0 8px 20px rgba(0, 86, 188, 0.15);
    transform: translateY(-2px);
}

.quick-action-btn.secondary-btn .action-icon {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: white;
}

.quick-action-btn.secondary-btn:hover .action-icon {
    background: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
}

/* Info Button */
.quick-action-btn.info-btn {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0369a1;
    border: 2px solid #bae6fd;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.08);
}

.quick-action-btn.info-btn:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0369a1;
    color: #0369a1;
    box-shadow: 0 8px 20px rgba(3, 105, 161, 0.15);
    transform: translateY(-2px);
}

.quick-action-btn.info-btn .action-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.quick-action-btn.info-btn:hover .action-icon {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

/* Action Icon */
.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.action-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.quick-action-btn:hover .action-icon::before {
    width: 80px;
    height: 80px;
}

/* Action Content */
.action-content {
    flex: 1;
    text-align: right;
    margin: 0 1rem;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.action-description {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

/* Action Arrow */
.action-arrow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.quick-action-btn:hover .action-arrow {
    transform: translateX(-3px);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-action-btn {
        padding: 1rem;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-left: 0.75rem;
    }
    
    .action-content {
        margin: 0 0.75rem;
    }
    
    .action-title {
        font-size: 1rem;
    }
    
    .action-description {
        font-size: 0.85rem;
    }
    
    .action-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .quick-action-btn {
        padding: 0.875rem;
    }
    
    .action-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    
    .action-content {
        margin: 0 0.5rem;
    }
    
    .action-title {
        font-size: 0.95rem;
    }
    
    .action-description {
        font-size: 0.8rem;
    }
}

.content-html a:hover {
    border-bottom-color: var(--primary-color);
}

/* Quick Actions Container */
.quick-actions-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-action-item:hover {
    transform: translateY(-2px);
}

.quick-action-item.primary-action {
    order: -1;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: none;
    background: none;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-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.6s ease;
}

.quick-action-btn:hover::before {
    left: 100%;
}

/* Primary Button */
.quick-action-btn.primary-btn {
    background: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 86, 188, 0.3);
    border: 2px solid #0056bc;
}

.quick-action-btn.primary-btn:hover {
    background: linear-gradient(135deg, #004494 0%, #0056bc 100%);
    box-shadow: 0 12px 35px rgba(0, 86, 188, 0.4);
    transform: translateY(-3px);
    color: white;
}

.quick-action-btn.primary-btn .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Secondary Button */
.quick-action-btn.secondary-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    color: #374151;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quick-action-btn.secondary-btn:hover {
    background: linear-gradient(135deg, #f8faff 0%, #e5e7eb 100%);
    border-color: #0056bc;
    color: #0056bc;
    box-shadow: 0 8px 20px rgba(0, 86, 188, 0.15);
    transform: translateY(-2px);
}

.quick-action-btn.secondary-btn .action-icon {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    color: white;
}

.quick-action-btn.secondary-btn:hover .action-icon {
    background: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
}

/* Info Button */
.quick-action-btn.info-btn {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0369a1;
    border: 2px solid #bae6fd;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.08);
}

.quick-action-btn.info-btn:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-color: #0369a1;
    color: #0369a1;
    box-shadow: 0 8px 20px rgba(3, 105, 161, 0.15);
    transform: translateY(-2px);
}

.quick-action-btn.info-btn .action-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
}

.quick-action-btn.info-btn:hover .action-icon {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
}

/* Action Icon */
.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.action-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.quick-action-btn:hover .action-icon::before {
    width: 80px;
    height: 80px;
}

/* Action Content */
.action-content {
    flex: 1;
    text-align: right;
    margin: 0 1rem;
}

.action-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.action-description {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    line-height: 1.4;
}

/* Action Arrow */
.action-arrow {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.quick-action-btn:hover .action-arrow {
    transform: translateX(-3px);
    background: rgba(255, 255, 255, 0.2);
}

/* Quick Actions Responsive Design */
@media (max-width: 768px) {
    .quick-action-btn {
        padding: 1rem;
    }
    
    .action-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-left: 0.75rem;
    }
    
    .action-content {
        margin: 0 0.75rem;
    }
    
    .action-title {
        font-size: 1rem;
    }
    
    .action-description {
        font-size: 0.85rem;
    }
    
    .action-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}
.primary-action .action-title{
    color: white;
}
@media (max-width: 576px) {
    .quick-action-btn {
        padding: 0.875rem;
    }
    
    .action-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    
    .action-content {
        margin: 0 0.5rem;
    }
    
    .action-title {
        font-size: 0.95rem;
    }
    
    .action-description {
        font-size: 0.8rem;
    }
}
/* Modern Stages Section - Professional Design */
.stages-modern-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid #e3f2fd;
    box-shadow: 0 20px 40px rgba(0, 86, 188, 0.08);
}

/* Modern Progress Bar */
.modern-progress-bar {
    position: relative;
    margin: 2rem 0;
}

.modern-progress-track {
    position: relative;
    height: 8px;
    background: linear-gradient(90deg, #e3f2fd 0%, #f0f8ff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0056bc 0%, #0078e6 50%, #0056bc 100%);
    border-radius: 20px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modern Stage Markers */
.modern-stage-marker {
    position: absolute;
    top: -25px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 10;
}

.modern-stage-marker:hover {
    transform: translateX(-50%) scale(1.1);
}

.modern-stage-marker.completed {
    animation: bounceIn 0.6s ease-out;
}

.modern-stage-marker.current {
    animation: pulse 2s infinite;
}

.modern-stage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.modern-stage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.modern-stage-marker:hover .modern-stage-icon::before {
    width: 100px;
    height: 100px;
}

.modern-stage-icon.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 3px solid #10b981;
}

.modern-stage-icon.current {
    background: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
    border: 3px solid #0056bc;
    box-shadow: 0 8px 25px rgba(0, 86, 188, 0.4);
}

.modern-stage-icon.pending {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border: 3px solid #6b7280;
}

.modern-stage-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
    max-width: 120px;
    line-height: 1.3;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.modern-stage-marker:hover .modern-stage-label {
    color: #0056bc;
    transform: scale(1.05);
}

/* Modern Progress Info */
.modern-progress-info {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f8ff 100%);
    border-radius: 16px;
    border: 1px solid #e3f2fd;
    box-shadow: 0 4px 12px rgba(0, 86, 188, 0.05);
}

.modern-progress-stat {
    text-align: center;
    flex: 1;
    position: relative;
}

.modern-progress-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #0056bc, transparent);
}

.modern-progress-stat:last-child::after {
    display: none;
}

.modern-progress-stat span {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0056bc;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 86, 188, 0.1);
}

.modern-progress-stat small {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Modern Current Stage Card */
.modern-current-stage-card {
    background: linear-gradient(135deg, #0056bc 0%, #0078e6 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    box-shadow: 0 12px 30px rgba(0, 86, 188, 0.2);
    position: relative;
    overflow: hidden;
}

.modern-current-stage-card::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.modern-current-stage-card h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modern-current-stage-card .content-html {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.modern-current-stage-card small {
    color: rgba(255, 255, 255, 0.8);
}

/* Modern Stage Details Grid */
.modern-stage-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.modern-stage-detail-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-stage-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 188, 0.05), transparent);
    transition: left 0.6s ease;
}

.modern-stage-detail-card:hover::before {
    left: 100%;
}

.modern-stage-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 86, 188, 0.15);
}

.modern-stage-detail-card.completed {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.modern-stage-detail-card.current {
    border-color: #0056bc;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 100%);
    box-shadow: 0 8px 25px rgba(0, 86, 188, 0.15);
}

.modern-stage-detail-card.pending {
    border-color: #d1d5db;
    background: #f9fafb;
}

.modern-stage-detail-card h6 {
    color: #374151;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modern-stage-detail-card .content-html {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modern-stage-detail-card small {
    color: #9ca3af;
    font-size: 0.8rem;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.3);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
    70% {
        transform: translateX(-50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 86, 188, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 86, 188, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-progress-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modern-progress-stat::after {
        display: none;
    }
    
    .modern-progress-stat {
        padding: 1rem;
        border-bottom: 1px solid #e3f2fd;
    }
    
    .modern-progress-stat:last-child {
        border-bottom: none;
    }
    
    .modern-stage-details-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-stage-marker {
        top: -20px;
    }
    
    .modern-stage-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modern-stage-label {
        font-size: 0.75rem;
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .modern-current-stage-card {
        padding: 1.5rem;
    }
    
    .modern-progress-stat span {
        font-size: 2rem;
    }
    
    .modern-stage-detail-card {
        padding: 1rem;
    }
}
/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-stats {
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
    color: white;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-stat i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-stat span {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
}

.hero-stat small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    animation: slideInUp 1s ease-out 0.4s both;
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.status-badge:hover::before {
    left: 100%;
}

.status-badge:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.status-badge.bg-success {
    background: var(--gradient-success);
    color: white;
    border-color: #059669;
}

.status-badge.bg-danger {
    background: var(--gradient-danger);
    color: white;
    border-color: #dc2626;
}

.status-badge.bg-warning {
    background: var(--gradient-secondary);
    color: white;
    border-color: #f97316;
}

.status-badge.bg-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-color: #0891b2;
}

.status-badge.bg-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border-color: #4b5563;
}

.status-badge i {
    margin-left: 0.75rem;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

/* Card Styles */
.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.info-card .card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid var(--border-color);
    padding: 2rem;
    position: relative;
}

.info-card .card-body {
    padding: 2.5rem;
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.icon-calendar { background: var(--gradient-primary); }
.icon-stats { background: var(--gradient-secondary); }
.icon-expertise { background: var(--gradient-success); }
.icon-problem { background: var(--gradient-danger); }
.icon-goals { background: var(--gradient-primary); }
.icon-criteria { background: var(--gradient-secondary); }
.icon-support { background: var(--gradient-success); }
.icon-submission { background: var(--gradient-primary); }
.icon-organizer { background: var(--gradient-secondary); }
.icon-attachments { background: var(--gradient-success); }
.icon-stages { background: var(--gradient-primary); }
.icon-faq { background: var(--gradient-secondary); }

/* Info Items */
.info-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    color: white;
}

.info-content label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-content strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Stats Cards */
.stats-card {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.stats-card:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.stats-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stats-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Tags */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s ease;
}

.tag:hover {
    transform: scale(1.05);
}

/* Attachment Links */
.attachment-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.attachment-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.floating-action-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.6);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .status-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .info-card .card-body {
        padding: 1.5rem;
    }
    
    .floating-action-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Content HTML Styles */
.content-html {
    line-height: 1.8;
    color: var(--text-primary);
}

.content-html p {
    margin-bottom: 1rem;
    text-align: justify;
}

.content-html h1, .content-html h2, .content-html h3, 
.content-html h4, .content-html h5, .content-html h6 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-html ul, .content-html ol {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
}

.content-html li {
    margin-bottom: 0.5rem;
}

.content-html blockquote {
    border-right: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.content-html code {
    background: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.content-html pre {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
}

.content-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.content-html table th,
.content-html table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: right;
}

.content-html table th {
    background: #f8f9fa;
    font-weight: 600;
}

.content-html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.content-html a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.content-html a:hover {
    border-bottom-color: var(--primary-color);
}
