/* Package Results Section with improved background */
.results-section {
    padding: 40px 0;
    background: var(--background-color);
    min-height: 100vh;
}

.results-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-title {
    font-size: 2.2rem; /* Larger title */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.results-subtitle {
    font-size: 1.2rem; /* Larger subtitle */
    color: var(--text-medium);
    margin-bottom: 30px;
}

/* Visual indicator for success */
.success-badge {
    display: inline-block;
    padding: 10px 18px;
    background-color: var(--success-color);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(174, 210, 85, 0.4);
}

/* Tabs Navigation with improved contrast */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Tab Content */
.tab-content {
    display: none;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Testimonial styles */
.testimonial {
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin: 0 auto 30px;
    max-width: 85%;
    border-radius: 0 10px 10px 0;
}

.testimonial blockquote {
    font-style: italic;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    padding: 0 20px;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Progress indicator */
.progress-indicator-layout {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px;
    max-width: 80%;
    position: relative;
}

.progress-indicator-layout::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 33.333%;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-medium);
    border: 3px solid #e0e0e0;
    margin-bottom: 12px;
}

.step-label {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-medium);
}

.progress-step-layout.completed .step-circle {
    background-color: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.progress-step-layout.current .step-circle {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    animation: pulse 2s infinite;
}

.progress-step-layout.completed .step-label,
.progress-step-layout.current .step-label {
    color: var(--text-dark);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Enhanced media queries for mobile */
@media (max-width: 768px) {
    .results-container {
        padding: 20px;
        border-radius: 12px;
    }
    
    .results-title {
        font-size: 1.8rem;
    }
    
    .results-subtitle {
        font-size: 1.1rem;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .progress-indicator-layout {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }
    
    .progress-indicator-layout::before {
        display: none;
    }
    
    .progress-step-layout {
        flex-direction: row;
        width: 100%;
        gap: 15px;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    
    .step-label {
        text-align: left;
    }
    
    .testimonial {
        padding: 15px;
        max-width: 95%;
    }
    
    .trust-indicators {
        gap: 15px;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
} 