/* Ayurvedic Wellness Assessment Styles */

.awa-assessment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

.awa-intro {
    background: #f8f9fa;
    border-left: 4px solid #348105;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.awa-intro-text {
    margin: 0;
    font-size: 16px;
    color: #555;
}

/* Progress Bar */
.awa-progress-container {
    margin-bottom: 30px;
}

.awa-progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.awa-progress-fill {
    height: 100%;
    background: #348105;
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 6.25%;
}

.awa-progress-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.awa-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.awa-question {
    display: none;
    margin-bottom: 0;
    padding: 30px;
    min-height: 400px;
}

.awa-question[data-question="1"],
.awa-question.active {
    display: block;
}

.awa-question-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.awa-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.awa-options label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.awa-options label:hover {
    background: #e9ecef;
    border-color: #348105;
}

.awa-options input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #348105;
}

.awa-options input[type="radio"]:checked + span,
.awa-options label:has(input[type="radio"]:checked) {
    background: #e8f5e9;
    border-color: #348105;
    font-weight: 500;
}

/* Navigation Buttons */
.awa-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.awa-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awa-btn-prev {
    background: #f8f9fa;
    color: #333 !important;
    border: 2px solid #e0e0e0;
}

.awa-btn-prev:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #333 !important;
}

.awa-btn-next,
.awa-btn-submit {
    background: #348105;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 129, 5, 0.4);
}

.awa-btn-next:hover,
.awa-btn-submit:hover {
    background: #2a6a04;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 129, 5, 0.6);
}

.awa-btn-next:active,
.awa-btn-submit:active {
    transform: translateY(0);
}

/* Loading Spinner */
.awa-loading {
    text-align: center;
    padding: 50px 20px;
}

.awa-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4a90e2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.awa-loading p {
    color: #666;
    font-size: 16px;
}

/* Results */
.awa-results {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Treatment Possibilities Cards */
.awa-treatment-possibilities {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.awa-possibility-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.awa-possibility-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.awa-possibility-title {
    color: #666666;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.awa-possibility-description {
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.awa-possibility-description strong {
    font-weight: 700;
    color: #000000;
}

.awa-results-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #348105;
    padding-bottom: 15px;
}

.awa-dosha-results {
    margin-top: 20px;
}

.awa-dosha-scores {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.awa-dosha-scores h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 22px;
}

.awa-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.awa-score-item:last-child {
    border-bottom: none;
}

.awa-dosha-name {
    font-weight: 600;
    font-size: 16px;
    color: #555;
}

.awa-score-value {
    font-size: 18px;
    font-weight: 700;
    color: #348105;
}

.awa-primary-dosha {
    background: #348105;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.awa-primary-dosha h3 {
    margin: 0;
    font-size: 24px;
}

.awa-recommendations,
.awa-lifestyle-recommendations {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.awa-recommendations h3,
.awa-lifestyle-recommendations h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.awa-recommendation-desc {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.awa-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awa-tips-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.awa-tips-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #348105;
    font-weight: bold;
    font-size: 18px;
}

.awa-tips-list li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

/* User Details Form */
.awa-user-details {
    display: none;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.awa-user-details-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #348105;
    padding-bottom: 15px;
}

.awa-user-form {
    max-width: 500px;
    margin: 0 auto;
}

.awa-form-group {
    margin-bottom: 25px;
}

.awa-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 15px;
}

.awa-required {
    color: #e74c3c;
}

.awa-form-group input[type="text"],
.awa-form-group input[type="email"],
.awa-form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    color: #000000 !important;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.awa-form-group input[type="text"]::placeholder,
.awa-form-group input[type="email"]::placeholder,
.awa-form-group input[type="tel"]::placeholder {
    color: #999999 !important;
    opacity: 1 !important;
}

.awa-form-group input[type="text"]:focus,
.awa-form-group input[type="email"]:focus,
.awa-form-group input[type="tel"]:focus {
    outline: none;
    border-color: #348105;
    box-shadow: 0 0 0 3px rgba(52, 129, 5, 0.1);
    color: #000000 !important;
}

.awa-form-submit {
    text-align: center;
    margin-top: 30px;
}

.awa-form-submit .awa-btn-submit {
    width: 100%;
    max-width: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awa-assessment-container {
        padding: 20px 15px;
    }
    
    .awa-form {
        padding: 20px 15px;
    }
    
    .awa-question-title {
        font-size: 16px;
    }
    
    .awa-options label {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .awa-results {
        padding: 25px 15px;
    }
    
    .awa-results-title {
        font-size: 24px;
    }
    
    .awa-user-details {
        padding: 25px 15px;
    }
    
    .awa-user-details-title {
        font-size: 20px;
    }
    
    .awa-possibility-card {
        padding: 25px 20px;
    }
    
    .awa-possibility-title {
        font-size: 16px;
    }
    
    .awa-possibility-description {
        font-size: 15px;
    }
}

/* Treatment Progress Card */
.awa-treatment-progress-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 40px;
    margin-bottom: 30px;
}

.awa-progress-bar-large {
    width: 100%;
    height: 60px;
    background: transparent;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    position: relative;
}

.awa-progress-fill-large {
    height: 100%;
    background: #348105;
    border-radius: 30px 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: width 0.3s ease;
}

.awa-progress-unfilled-large {
    height: 100%;
    background: #e8f5e9;
    border-radius: 0 30px 30px 0;
}

.awa-progress-text-large {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.awa-treatment-progress-description {
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.awa-treatment-progress-description strong {
    font-weight: 700;
    color: #000000;
}

/* Book Consultation Button */
.awa-book-consultation-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.awa-btn-book-consultation {
    background: #348105;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 129, 5, 0.4);
    text-decoration: none;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.awa-btn-book-consultation:hover {
    background: #2a6a04;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 129, 5, 0.6);
    color: white;
    text-decoration: none;
}

.awa-btn-book-consultation:active {
    transform: translateY(0);
}

/* Offer Text and Timer */
.awa-offer-text {
    margin-top: 20px;
    font-size: 16px;
    color: #333333;
    text-align: center;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.awa-offer-text #awa-timer {
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 768px) {
    .awa-treatment-progress-card {
        padding: 25px 20px;
    }
    
    .awa-progress-bar-large {
        height: 50px;
    }
    
    .awa-progress-text-large {
        font-size: 14px;
    }
    
    .awa-treatment-progress-description {
        font-size: 15px;
    }
    
    .awa-btn-book-consultation {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .awa-offer-text {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .awa-offer-text #awa-timer {
        font-size: 16px;
    }
}

