/* template/css/about.css */
.page-about {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a3a8f 0%, #2c5aa0 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: center;
    max-width: 100px;
}

.hero-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.badge-inner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.badge-title {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a3a8f;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Section */
.legal-section {
    background: white;
}

.legal-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #1a3a8f, #2c5aa0);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: #1a3a8f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: calc(50% - 70px);
    margin: 0 20px;
    border: 1px solid #e0e0e0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 20px;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 20px;
    margin-right: 0;
}

.timeline-content h4 {
    color: #1a3a8f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.timeline-partners {
    margin-top: 15px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f4fd;
    color: #1a3a8f;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.reference-number {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Legal Notice */
.legal-notice {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #ffc107;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.notice-header i {
    font-size: 2rem;
    color: #ffc107;
}

.notice-header h5 {
    color: #856404;
    font-size: 1.3rem;
    margin: 0;
}

.notice-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.clarification {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.clarification ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.clarification li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.clarification li:last-child {
    border-bottom: none;
}

.clarification li::before {
    content: '•';
    position: absolute;
    left: 15px;
    color: #1a3a8f;
    font-size: 1.5rem;
    line-height: 1;
}

/* Vision & Mission Cards */
.vision-card, .missions-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.vision-card:hover, .missions-card:hover {
    transform: translateY(-5px);
}

.vision-header, .missions-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vision-icon, .missions-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3a8f, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.vision-title, .missions-title {
    font-size: 2rem;
    color: #1a3a8f;
    margin: 0;
}

.vision-content h4 {
    color: #1a3a8f;
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.vision-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.vision-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    color: #28a745;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #333;
    font-weight: 500;
}

/* Missions List */
.missions-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.missions-list li {
    margin-bottom: 25px;
}

.mission-item {
    display: flex;
    gap: 20px;
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1a3a8f;
    font-size: 1.2rem;
}

.mission-text strong {
    display: block;
    color: #1a3a8f;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.mission-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Objectives Section */
.objectives-section {
    background: white;
}

.main-objective {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a3a8f, #2c5aa0);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.main-objective-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.main-objective-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.main-objective-text p {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

.main-objective-text p:last-child {
    margin-bottom: 0;
}

.specific-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1a3a8f;
    margin-bottom: 40px;
}

.objective-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #1a3a8f;
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3a8f, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 20px;
}

.objective-card h5 {
    color: #1a3a8f;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objective-details {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.objective-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.objective-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Activities Section */
.activities-section {
    background: #f8f9fa;
}

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #1a3a8f;
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a3a8f, #2c5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.activity-title {
    color: #1a3a8f;
    font-size: 1.3rem;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    text-align: left;
}

.activity-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.activity-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: #1a3a8f;
    font-size: 1.2rem;
}

/* Activities Summary */
.summary-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #1a3a8f;
}

.summary-icon {
    font-size: 3rem;
    color: #1a3a8f;
    flex-shrink: 0;
}

.summary-content h4 {
    color: #1a3a8f;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.summary-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #1a3a8f 0%, #2c5aa0 100%);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .legal-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 20px !important;
        margin-right: 0 !important;
    }
    
    .timeline-year {
        position: absolute;
        left: -60px;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .main-objective {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-title {
        min-height: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}