/* public/css/terima-kasih.css */

/* Reset dan font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-main-terima-kasih {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    min-height: calc(100vh - 120px); /* Sesuaikan dengan tinggi navbar dan footer */
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirmation-wrapper {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
}

/* Success Icon */
.success-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: bounceIn 0.8s ease-out;
}

.icon-circle i {
    font-size: 48px;
    color: white;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Judul dan Teks */
.main-title {
    color: #1e293b;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.confirmation-text {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Box */
.info-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.info-header i {
    font-size: 24px;
    color: #3b82f6;
}

.info-header h3 {
    color: #1e293b;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.info-text {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    padding: 8px 16px;
    border-radius: 20px;
    color: #1d4ed8;
    font-weight: 500;
    border: 1px solid #93c5fd;
}

.location-tag i {
    font-size: 14px;
}

/* Process Box */
.process-box {
    border-left: 4px solid #8b5cf6;
}

.process-box .info-header i {
    color: #8b5cf6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: white;
    font-size: 18px;
}

.step-content h4 {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    margin: 40px 0 30px;
}

.btn-selesai {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 16px 60px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-selesai:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

/* Footer Note */
.footer-note {
    background: #fef3c7;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #fcd34d;
    text-align: center;
}

.footer-note p {
    color: #92400e;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.footer-note i {
    font-size: 16px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .container-main-terima-kasih {
        padding: 20px;
        min-height: calc(100vh - 100px);
    }
    
    .confirmation-wrapper {
        padding: 25px;
        margin: 10px;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .confirmation-text {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle i {
        font-size: 36px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-header h3 {
        font-size: 18px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-icon {
        margin: 0 auto;
    }
    
    .btn-selesai {
        padding: 15px 40px;
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 22px;
    }
    
    .confirmation-text {
        font-size: 15px;
    }
    
    .info-header h3 {
        font-size: 16px;
    }
    
    .info-text {
        font-size: 14px;
    }
    
    .footer-note p {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .confirmation-wrapper {
        padding: 20px 15px;
    }
}