/* Progress Tracker Styles */
.progress-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #FFF8E1 50%, #FFE0B2 100%);
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.progress-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.progress-header {
    text-align: center;
    margin-bottom: 3rem;
}

.progress-title {
    color: #FF7043;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.progress-step {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border-left: 4px solid #E0E0E0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.progress-step.active {
    border-left-color: #FF7043;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 25px rgba(255, 112, 67, 0.15);
    opacity: 1;
    transform: translateX(5px);
}

.progress-step.completed {
    border-left-color: #4CAF50;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
}

.step-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, #FFE0B2, #FFCC80);
    color: #FF7043;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 3px solid #FFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.progress-step.active .step-icon {
    background: linear-gradient(135deg, #FF7043, #FF5722);
    color: white;
    animation: pulse 2s infinite;
}

.progress-step.completed .step-icon {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
}

.step-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-content {
    flex: 1;
}

.step-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.step-description {
    color: #666;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.step-time {
    color: #FF7043;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 112, 67, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

.progress-bar-container {
    margin-bottom: 2rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF7043, #FFB74D, #4ECDC4);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 2px 8px rgba(255, 112, 67, 0.3);
}

.progress-percentage {
    text-align: center;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-motivational {
    text-align: center;
    margin-top: 2rem;
}

.beach-animations {
    margin-bottom: 1rem;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.sun-animation {
    color: #FFD54F;
    animation: rotate 4s linear infinite;
}

.umbrella-animation {
    color: #FF7043;
    animation: sway 3s ease-in-out infinite;
}

.wave-animation {
    color: #4ECDC4;
    animation: wave 2s ease-in-out infinite;
}

#motivationalText {
    color: #666;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 112, 67, 0.5);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .progress-wrapper {
        padding: 0 1rem;
    }
    
    .progress-title {
        font-size: 1.6rem;
    }
    
    .progress-step {
        padding: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .beach-animations {
        font-size: 1.5rem;
        gap: 1rem;
    }
}

/* Integration with existing beach theme */
.progress-section .fas {
    font-family: "Font Awesome 6 Free";
}