
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    min-height: 100vh;
    line-height: 1.6;
}

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

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

.logo-banner {
    margin-bottom: 30px;
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-radius: 15px;
    border: 1px solid rgba(77, 166, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.company-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(77, 166, 255, 0.3));
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(77, 166, 255, 0.5));
}

.header h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    color: #b8c5d6;
    margin-bottom: 20px;
}

/* Form Styles */
.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-section h2 {
    color: #4da6ff;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e1e8f0;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4da6ff;
    box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
}

.form-group select option {
    background: #1a1a2e;
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 166, 255, 0.4);
}

.submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Progress Bar */
.progress-container {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    width: 0%;
    transition: width 0.5s ease;
}

#progressText {
    color: #b8c5d6;
    font-size: 14px;
}

/* Assessment Styles */
.assessment-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.category-header h2 {
    color: #4da6ff;
    margin-bottom: 15px;
    font-size: 2rem;
}

.category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.question-container {
    margin-bottom: 40px;
}

.question-container h3 {
    color: #e1e8f0;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.question-example {
    background: rgba(77, 166, 255, 0.1);
    border: 1px solid rgba(77, 166, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0 30px 0;
    color: #b8c5d6;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    text-align: left;
}

.rating-scale {
    text-align: center;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #b8c5d6;
    font-size: 14px;
}

.rating-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-btn:hover {
    border-color: #4da6ff;
    background: rgba(77, 166, 255, 0.2);
}

.rating-btn.selected {
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    border-color: #4da6ff;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.nav-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.next-btn:not(:disabled) {
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    border-color: #4da6ff;
}

.milestone-message {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(45deg, rgba(77, 166, 255, 0.2), rgba(102, 179, 255, 0.2));
    border: 1px solid rgba(77, 166, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    color: #e1e8f0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.milestone-message.show {
    opacity: 1;
}

/* Results Styles */
.overall-score {
    text-align: center;
    padding: 30px;
    background: linear-gradient(45deg, rgba(77, 166, 255, 0.2), rgba(102, 179, 255, 0.2));
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(77, 166, 255, 0.3);
}

.overall-score h2 {
    font-size: 2.5rem;
    color: #4da6ff;
    margin-bottom: 10px;
}

.overall-score p {
    font-size: 1.2rem;
    color: #b8c5d6;
}

.results-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.results-section h2 {
    color: #4da6ff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.heatmap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid transparent;
}

.category-row.excellent { border-left-color: #28a745; }
.category-row.good { border-left-color: #17a2b8; }
.category-row.average { border-left-color: #ffc107; }
.category-row.poor { border-left-color: #dc3545; }

.category-name {
    font-weight: 600;
    color: #e1e8f0;
}

.category-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4da6ff;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommendation-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4da6ff;
}

.recommendation-item h4 {
    color: #4da6ff;
    margin-bottom: 10px;
}

.recommendation-item p {
    color: #b8c5d6;
    line-height: 1.6;
}

.consultation-section {
    background: linear-gradient(45deg, rgba(77, 166, 255, 0.1), rgba(102, 179, 255, 0.1));
    border: 1px solid rgba(77, 166, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.consultation-section h3 {
    color: #4da6ff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.consultation-section p {
    color: #b8c5d6;
    margin-bottom: 20px;
    line-height: 1.6;
}

.consultation-btn {
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 166, 255, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 166, 255, 0.4);
}

.consultation-btn:disabled {
    background: #28a745;
    cursor: not-allowed;
    transform: none;
}

.readiness-gauge-container {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.readiness-gauge-container h2 {
    color: #4da6ff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.gauge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.readiness-gauge {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.heatmap-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b8c5d6;
    font-size: 14px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid transparent;
}

.legend-color.excellent {
    background: #28a745;
    border-color: #28a745;
}

.legend-color.good {
    background: #17a2b8;
    border-color: #17a2b8;
}

.legend-color.average {
    background: #ffc107;
    border-color: #ffc107;
}

.legend-color.poor {
    background: #dc3545;
    border-color: #dc3545;
}

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

@media (max-width: 768px) {
    .readiness-gauge-container {
        padding: 20px;
    }
    
    .readiness-gauge {
        width: 250px;
        height: 150px;
    }
    
    .heatmap-legend {
        flex-direction: column;
        align-items: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.consultation-note {
    font-size: 14px;
    color: #8fa3b8;
    margin-top: 15px;
    font-style: italic;
}

.consultation-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(45deg, rgba(77, 166, 255, 0.1), rgba(102, 179, 255, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(77, 166, 255, 0.2);
}

.consultation-section h3 {
    color: #4da6ff;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.consultation-section p {
    color: #b8c5d6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.consultation-btn {
    padding: 16px 32px;
    background: linear-gradient(45deg, #4da6ff, #66b3ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 166, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rating-buttons {
        gap: 10px;
    }
    
    .rating-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}
