/* Nik Tinat Color Palette:
   #20BFAF : Primary Teal
   #0F4C5C : Dark Blue
   #C89F4E : Warm Gold Accent
   #F7F5F0 : Cream Light Background
   #FFFFFF : White Card
   #2E3133 : Charcoal Main Text
   #6B7076 : Muted Text
   #E2E6E4 : Border Grey
*/

.pq-container {
    font-family: inherit;
    max-width: 680px;
    margin: 30px auto;
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}

.pq-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E6E4;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(15, 76, 92, 0.05);
    transition: all 0.3s ease;
}

.pq-badge {
    display: inline-block;
    background-color: rgba(32, 191, 175, 0.12);
    color: #0F4C5C;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.pq-badge.success {
    background-color: rgba(200, 159, 78, 0.15);
    color: #0F4C5C;
}

.pq-title {
    color: #0F4C5C;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.pq-subtitle {
    color: #6B7076;
    font-size: 14px;
    margin-bottom: 24px;
}

.pq-intro-content {
    color: #2E3133;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.pq-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s, transform 0.1s;
}

.pq-btn-primary {
    background-color: #20BFAF;
    color: #FFFFFF;
}

.pq-btn-primary:hover {
    background-color: #0F4C5C;
}

/* Progress Header */
.pq-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6B7076;
    margin-bottom: 8px;
    font-weight: 600;
}

.pq-progress-bar-bg {
    width: 100%;
    height: 10px;
    background-color: #F7F5F0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 24px;
}

.pq-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #20BFAF, #0F4C5C);
    width: 0%;
    transition: width 0.3s ease;
}

/* Question Area */
.pq-question-box {
    background-color: #F7F5F0;
    border-right: 4px solid #C89F4E;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    min-height: 90px;
    display: flex;
    align-items: center;
}

.pq-question-text {
    color: #2E3133;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

/* Options */
.pq-options {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.pq-option-btn {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    border: 2px solid #E2E6E4;
    background-color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.pq-btn-agree {
    color: #0F4C5C;
}

.pq-btn-agree:hover {
    border-color: #20BFAF;
    background-color: rgba(32, 191, 175, 0.08);
}

.pq-btn-disagree {
    color: #6B7076;
}

.pq-btn-disagree:hover {
    border-color: #C89F4E;
    background-color: rgba(200, 159, 78, 0.08);
}

.pq-icon {
    font-size: 18px;
}

.pq-footer-nav {
    text-align: left;
}

.pq-btn-link {
    background: none;
    border: none;
    color: #6B7076;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 12px;
}

.pq-btn-link:hover {
    color: #0F4C5C;
    text-decoration: underline;
}

/* Form inputs */
.pq-form-group {
    margin-bottom: 18px;
}

.pq-form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #2E3133;
    margin-bottom: 6px;
}

.pq-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E6E4;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.pq-input:focus {
    border-color: #20BFAF;
    outline: none;
}

/* Results */
.pq-outro-text {
    color: #2E3133;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #E2E6E4;
}

.pq-result-card {
    background-color: #F7F5F0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px;
    border: 1px solid #E2E6E4;
}

.pq-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pq-result-title {
    font-size: 16px;
    font-weight: bold;
    color: #0F4C5C;
    margin: 0;
}

.pq-result-score {
    font-size: 18px;
    font-weight: 800;
    color: #20BFAF;
}

.pq-result-bar-bg {
    width: 100%;
    height: 8px;
    background-color: #E2E6E4;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.pq-result-bar-fill {
    height: 100%;
    background-color: #C89F4E;
    border-radius: 4px;
}

.pq-result-desc {
    font-size: 13.5px;
    color: #6B7076;
    line-height: 1.6;
    margin: 0;
}
