/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
    padding: 20px 0;
}

.page.active {
    display: block;
}

/* Typography */
.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
}

/* Landing Page */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.intro-text {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.pillar i {
    color: #667eea;
    font-size: 1.2rem;
}

.pillar span {
    font-weight: 500;
    color: #333;
}

.assessment-info {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.info-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card i {
    color: #667eea;
    width: 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.9);
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: white;
    border-color: #667eea;
    color: #667eea;
}

.btn-primary:disabled, .btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

#start-assessment {
    display: block;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Assessment Page */
.assessment-header {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.progress-container {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
}

.section-indicator {
    text-align: center;
}

.current-section {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.question-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.question-card {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.question-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.rating-scale {
    margin-top: 2rem;
}

.scale-labels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.scale-labels span {
    text-align: center;
}

.rating-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.rating-btn {
    width: 60px;
    height: 60px;
    border: 3px solid #ddd;
    border-radius: 50%;
    background: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.rating-btn:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.rating-btn.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.1);
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.score-sidebar {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 200px;
}

.score-sidebar h4 {
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.section-scores {
    margin-bottom: 1rem;
}

.section-score {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.section-score:last-child {
    border-bottom: none;
}

.total-score {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #667eea;
    color: #333;
}

/* Results Page */
.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.overall-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 0 auto;
    max-width: 600px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#overall-score-number {
    font-size: 2rem;
    font-weight: 700;
}

.score-total {
    font-size: 1rem;
    opacity: 0.8;
}

.overall-grade {
    text-align: left;
}

#overall-grade-text {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

#overall-grade-description {
    display: block;
    font-size: 1.1rem;
    color: #666;
}

.section-results {
    margin-bottom: 3rem;
}

.section-results h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.section-result-card {
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.section-result-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.section-result-score {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-result-grade {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-result-description {
    font-size: 0.9rem;
    color: #666;
}

.grade-a { color: #28a745; }
.grade-b { color: #17a2b8; }
.grade-c { color: #ffc107; }
.grade-d { color: #dc3545; }

.results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.next-steps {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.next-steps h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.recommendations {
    display: grid;
    gap: 1rem;
}

.recommendation {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.recommendation h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.recommendation p {
    color: #666;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.share-options {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.share-btn {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.share-btn[data-platform="twitter"] {
    background: #1da1f2;
    color: white;
}

.share-btn[data-platform="facebook"] {
    background: #4267b2;
    color: white;
}

.share-btn[data-platform="linkedin"] {
    background: #0077b5;
    color: white;
}

.share-btn[data-platform="copy"] {
    background: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-preview {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.share-preview h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.share-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .question-card {
        padding: 2rem 1.5rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .scale-labels {
        font-size: 0.8rem;
    }
    
    .rating-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .score-sidebar {
        position: static;
        transform: none;
        margin: 2rem auto;
        max-width: 300px;
    }
    
    .overall-score {
        flex-direction: column;
        text-align: center;
    }
    
    .section-results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .rating-buttons {
        gap: 0.5rem;
    }
    
    .rating-btn {
        width: 45px;
        height: 45px;
    }
    
    .scale-labels {
        font-size: 0.7rem;
    }
}



/* Section Completion Notification */
.section-completion-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

.notification-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification-content i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.notification-content h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notification-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Progress Text */
.progress-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Mobile adjustments for enhanced progress */
@media (max-width: 768px) {
    .progress-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .notification-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .notification-content h3 {
        font-size: 1.3rem;
    }
    
    .notification-content i {
        font-size: 2.5rem;
    }
}



/* Contact Form Page Styles */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-icon {
    text-align: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 3rem;
    color: #fff;
    opacity: 0.8;
}

.contact-info p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.contact-info li {
    color: #fff;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: #4ade80;
    font-size: 0.9rem;
}

.privacy-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #4ade80;
    margin-top: 20px;
    font-size: 0.95rem;
}

.privacy-note i {
    color: #4ade80;
    margin-right: 8px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group label i {
    margin-right: 8px;
    color: #6366f1;
    width: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input:invalid {
    border-color: #ef4444;
}

.form-group input:valid {
    border-color: #10b981;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.btn-primary {
    flex: 2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary {
        flex: 1;
    }
}

/* Form Validation States */
.form-group.error input {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group.success input {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Loading State */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

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


/* Enhanced Results Page Styles */

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.user-info {
    margin-top: 1rem;
    color: #666;
}

.user-info p {
    margin: 0.25rem 0;
}

.overall-results-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overall-score-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.score-circle {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.score-total {
    font-size: 1rem;
    opacity: 0.8;
}

.overall-grade {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.grade-badge {
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.grade-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.grade-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.overall-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Section Results Grid */
.section-results {
    margin-bottom: 3rem;
}

.section-results h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.section-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.section-title h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.section-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    color: #666;
}

.section-grade {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.section-summary h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.section-summary p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Detailed Feedback Sections */
.detailed-feedback {
    margin-bottom: 3rem;
}

.detailed-feedback h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.feedback-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.overall-pathway {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.overall-pathway h3 {
    margin-top: 0;
    color: white;
}

.pathway-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.next-level h4 {
    margin-bottom: 1rem;
    color: white;
}

.next-level ul {
    list-style: none;
    padding: 0;
}

.next-level li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.next-level li:before {
    content: "🎯";
    position: absolute;
    left: 0;
}

.development-focus {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Pillar Details */
.pillar-details {
    display: grid;
    gap: 2rem;
}

.pillar-detail {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #667eea;
}

.pillar-detail h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-content h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.detail-content ul, .detail-content ol {
    padding-left: 1.5rem;
}

.detail-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.strengths-section {
    background: #f8f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.growth-section {
    background: #fff8f0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #FF9800;
}

.focus-section {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.next-steps-section {
    background: #f8fff0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8BC34A;
}

/* Action Summary */
.action-summary {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.action-summary h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.priority-actions {
    display: grid;
    gap: 1.5rem;
}

.action-item {
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid;
}

.priority-1 {
    background: #fff5f5;
    border-left-color: #e53e3e;
}

.priority-2 {
    background: #fffaf0;
    border-left-color: #dd6b20;
}

.priority-3 {
    background: #f0fff4;
    border-left-color: #38a169;
}

.action-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.action-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-accent {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

/* Results Footer */
.results-footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
    line-height: 1.6;
}

.results-footer p {
    margin: 0.5rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .overall-score-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-results-grid {
        grid-template-columns: 1fr;
    }
    
    .pathway-content {
        grid-template-columns: 1fr;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .results-actions button {
        width: 100%;
        max-width: 300px;
    }
}

