/* Styles specific to invertor.html */

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #97bd58 0%, #6dabd2 50%, #e0e0e0 100%);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(109, 171, 210, 0.3);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #97bd58 0%, #6dabd2 100%);
    border: 4px solid white;
    box-shadow: 
        0 0 0 2px #97bd58,
        0 0 0 4px rgba(151, 189, 88, 0.15),
        0 4px 12px rgba(109, 171, 210, 0.3);
}

.timeline-content {
    background: #fafbfc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(109, 171, 210, 0.12);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 4px 12px rgba(109, 171, 210, 0.1);
    border-color: rgba(109, 171, 210, 0.25);
}

.timeline-content h3 {
    color: #344864;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-content a {
    color: #6dabd2;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.timeline-content a:hover {
    color: #97bd58;
    text-decoration: underline;
}

.timeline-item.completed::before {
    background: linear-gradient(135deg, #97bd58 0%, #85a84a 100%);
    box-shadow: 
        0 0 0 2px #97bd58,
        0 0 0 4px rgba(151, 189, 88, 0.15),
        0 4px 12px rgba(109, 171, 210, 0.3);
}

.timeline-item.in-progress::before {
    background: linear-gradient(135deg, #6dabd2 0%, #5a9bc4 100%);
    animation: pulse-dot 2s ease-in-out infinite;
}

.timeline-item.pending::before {
    background: #e0e0e0;
    box-shadow: 
        0 0 0 2px #e0e0e0,
        0 0 0 4px rgba(224, 224, 224, 0.15),
        0 4px 12px rgba(224, 224, 224, 0.2);
}

@keyframes pulse-dot {
    0%, 100% { 
        box-shadow: 
            0 0 0 2px #97bd58,
            0 0 0 4px rgba(151, 189, 88, 0.15),
            0 4px 12px rgba(109, 171, 210, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 0 2px #6dabd2,
            0 0 0 6px rgba(109, 171, 210, 0.3),
            0 4px 16px rgba(109, 171, 210, 0.5);
    }
}

.timeline-item.completed .timeline-content {
    background: linear-gradient(135deg, #f5fdf8 0%, #fafbfc 100%);
    border-color: rgba(151, 189, 88, 0.2);
}

.timeline-item.in-progress .timeline-content {
    background: linear-gradient(135deg, #f0f8ff 0%, #fafbfc 100%);
    border-color: rgba(109, 171, 210, 0.3);
    border-width: 2px;
}

.timeline-item.pending .timeline-content {
    background: #fafbfc;
    opacity: 0.7;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 1rem;
}

.status-badge.completed {
    background: linear-gradient(135deg, #97bd58 0%, #85a84a 100%);
    color: white;
}

.status-badge.in-progress {
    background: linear-gradient(135deg, #6dabd2 0%, #5a9bc4 100%);
    color: white;
    animation: pulse-badge 2s ease-in-out infinite;
}

.status-badge.pending {
    background: #e0e0e0;
    color: #666;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Status Section Styles */
.status-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #fafbfc 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(109, 171, 210, 0.3);
}

.status-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.status-subtitle {
    color: #6dabd2;
    margin-bottom: 1rem;
}

.status-description {
    margin-bottom: 1rem;
}

.status-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.status-stat-card {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.status-stat-card.completed {
    border: 2px solid rgba(151, 189, 88, 0.3);
}

.status-stat-card.in-progress {
    border: 2px solid rgba(109, 171, 210, 0.3);
}

.status-stat-card.pending {
    border: 2px solid rgba(224, 224, 224, 0.5);
}

.status-stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.status-stat-card.completed .status-stat-number {
    color: #97bd58;
}

.status-stat-card.in-progress .status-stat-number {
    color: #6dabd2;
}

.status-stat-card.pending .status-stat-number {
    color: #999;
}

.status-stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section Styles */
.contact-question {
    margin-bottom: 1rem;
}

.contact-note {
    margin-top: 1.5rem;
    color: #666;
}

/* Footer Styles */
.footer-copyright {
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Issues List Styles */
.issues-list {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #6dabd2;
}

.issues-list h4 {
    color: #344864;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.issues-list ol {
    margin-left: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.issues-list li {
    margin-bottom: 0.75rem;
}

.issues-list li:last-child {
    margin-bottom: 0;
}

/* Collection Notice Styles */
.collection-notice {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fff5f5;
    border-radius: 12px;
    border-left: 4px solid #dc3545;
}

.collection-notice p {
    color: #721c24;
    margin: 0;
    line-height: 1.8;
}

.collection-notice b {
    color: #dc3545;
    font-weight: 700;
}

/* Documents Section Styles */
.documents-list {
    margin-top: 2rem;
}

.document-item {
    margin-bottom: 1rem;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 2px solid rgba(109, 171, 210, 0.15);
    text-decoration: none;
    color: #344864;
    transition: all 0.3s ease;
}

.document-link:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #fafbfc 100%);
    border-color: rgba(109, 171, 210, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(109, 171, 210, 0.1);
}

.document-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #6dabd2 0%, #5a9bc4 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.document-link:hover .document-number {
    background: linear-gradient(135deg, #97bd58 0%, #85a84a 100%);
}

.document-title {
    flex: 1;
    font-weight: 500;
    line-height: 1.5;
}

.document-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Additional Costs Section Styles */
.costs-list {
    margin-top: 2rem;
}

.cost-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 2px solid rgba(109, 171, 210, 0.15);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cost-item:hover {
    background: linear-gradient(135deg, #f0f8ff 0%, #fafbfc 100%);
    border-color: rgba(109, 171, 210, 0.3);
    box-shadow: 0 4px 12px rgba(109, 171, 210, 0.1);
}

.cost-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #6dabd2 0%, #5a9bc4 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cost-content {
    flex: 1;
}

.cost-content h3 {
    color: #344864;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.cost-content p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

.costs-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fffef5 100%);
    border-radius: 12px;
    border-left: 4px solid #97bd58;
}

.costs-note p {
    color: #555;
    margin: 0;
    line-height: 1.7;
}

.costs-note strong {
    color: #344864;
}

/* Mobile styles for invertor.html */
@media (max-width: 768px) {
    .document-link {
        padding: 1rem;
        gap: 0.75rem;
    }

    .document-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.95rem;
    }

    .document-title {
        font-size: 0.9rem;
    }

    .document-icon {
        font-size: 1.2rem;
    }

    .cost-item {
        padding: 1rem;
        gap: 1rem;
    }

    .cost-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.95rem;
    }

    .cost-content h3 {
        font-size: 1.1rem;
    }

    .cost-content p {
        font-size: 0.9rem;
    }

    .costs-note {
        padding: 1rem;
    }
}

