/**
 * Journey Steps Section and Sacred Invitation Styles
 */

/* Instructions */
.journey-instructions {
    margin-top: 3rem;
    opacity: 0.8;
}

.instruction-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.premium-notice {
    color: rgba(255, 215, 0, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.instruction-arrow {
    font-size: 1.5rem;
    color: rgba(138, 43, 226, 0.8);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Journey Steps Section */
.journey-steps {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.steps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.steps-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

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

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgba(138, 43, 226, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step-icon {
    font-size: 3rem;
    color: rgba(138, 43, 226, 0.8);
    margin-bottom: 1.5rem;
}

.step-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.step-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-glow {
    opacity: 1;
}

/* Sacred Invitation */
.sacred-invitation {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.invitation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.invitation-icon {
    font-size: 4rem;
    color: rgba(138, 43, 226, 0.8);
    margin-bottom: 2rem;
}

.invitation-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.invitation-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.invitation-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sacred-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
}

.sacred-btn.primary {
    background: rgba(138, 43, 226, 0.8);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.sacred-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.sacred-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.sacred-btn.primary:hover {
    background: rgba(138, 43, 226, 1);
    color: white;
}

.sacred-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-shine {
    position: absolute;
    top: -2px;
    left: -100%;
    width: 100%;
    height: calc(100% + 4px);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.sacred-btn:hover .btn-shine {
    left: 100%;
}