/* SRDP Impact Check — Orange Theme #FF6725, prefix: srd- */

/* ── Hero ── */
.srd-search-hero {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 32px 28px 22px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
.srd-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.srd-search-hero-decoration::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.srd-search-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.srd-search-hero-badge i {
    margin-right: 5px;
}
.srd-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.srd-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.srd-search-hero-desc a {
    color: #ffe0b2;
    text-decoration: underline;
    font-weight: 500;
}
.srd-search-hero-desc a:hover {
    color: #fff;
    text-decoration: none;
}
.srd-search-hero + .srd-search-card {
    border-radius: 0 0 20px 20px !important;
}

/* ── Search / Questionnaire Card ── */
.srd-search-card {
    padding: 28px;
}

/* ── Questionnaire ── */
.srd-question-wrapper {
    max-width: 640px;
    margin: 0 auto;
}
.srd-question-group {
    margin-bottom: 24px;
}
.srd-question-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
    line-height: 1.5;
}
.srd-question-group label .srd-q-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FF6725;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-right: 8px;
    flex-shrink: 0;
}
.srd-question-group .nice-select {
    width: 100%;
}
.srd-assess-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6725 0%, #ff8a50 100%);
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}
.srd-assess-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,103,37,0.25);
}
.srd-assess-btn i {
    margin-right: 6px;
}
.srd-reset-btn {
    display: inline-block;
    background: transparent;
    color: #888;
    border: 1px solid #ddd;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    margin-left: 10px;
}
.srd-reset-btn:hover {
    border-color: #FF6725;
    color: #FF6725;
}

/* ── Result Area ── */
.srd-result {
    display: none;
    margin-top: 28px;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    animation: srd-fadein 0.4s ease;
}
@keyframes srd-fadein {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.srd-result.srd-red {
    background: #fbe9e7;
    border: 1px solid #ef9a9a;
}
.srd-result.srd-orange {
    background: #fff3e0;
    border: 1px solid #ffcc80;
}
.srd-result.srd-yellow {
    background: #fff8e1;
    border: 1px solid #ffe082;
}
.srd-result.srd-green {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
}
.srd-result.srd-blue {
    background: #e3f2fd;
    border: 1px solid #90caf9;
}

.srd-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.srd-red .srd-result-badge   { background: #c62828; color: #fff; }
.srd-orange .srd-result-badge { background: #e65100; color: #fff; }
.srd-yellow .srd-result-badge { background: #f9a825; color: #fff; }
.srd-green .srd-result-badge  { background: #2e7d32; color: #fff; }
.srd-blue .srd-result-badge   { background: #1565c0; color: #fff; }

.srd-result-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
}
.srd-red .srd-result-title   { color: #b71c1c; }
.srd-orange .srd-result-title { color: #bf360c; }
.srd-yellow .srd-result-title { color: #e65100; }
.srd-green .srd-result-title  { color: #1b5e20; }
.srd-blue .srd-result-title   { color: #0d47a1; }

.srd-result-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 14px;
}
.srd-result-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}
.srd-result-actions li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.srd-result-actions li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 13px;
}
.srd-red .srd-result-actions li::before   { color: #c62828; }
.srd-orange .srd-result-actions li::before { color: #e65100; }
.srd-yellow .srd-result-actions li::before { color: #f9a825; }
.srd-green .srd-result-actions li::before  { color: #2e7d32; }
.srd-blue .srd-result-actions li::before   { color: #1565c0; }

/* ── Info Cards Grid ── */
.srd-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.srd-info-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}
.srd-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.srd-info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF6725;
    margin-bottom: 14px;
}
.srd-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}
.srd-info-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ── Reference Table ── */
.srd-ref-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}
.srd-ref-table thead th {
    background: #fff5f0;
    color: #e65100;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 14px 18px;
    text-align: left;
}
.srd-ref-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    line-height: 1.6;
}
.srd-ref-table tbody tr:last-child td {
    border-bottom: none;
}
.srd-ref-table tbody tr:hover {
    background: #fafafa;
}

/* ── Corridor Chips ── */
.srd-corridors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}
.srd-corridor-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff5f0;
    border: 1px solid #ffe0cc;
    border-radius: 10px;
    font-size: 13px;
    color: #bf360c;
    font-weight: 500;
}
.srd-corridor-chip i {
    color: #FF6725;
    font-size: 12px;
}

/* ── FAQ ── */
.srd-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.srd-faq-item.open {
    border-color: #ff6725;
}
.srd-faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
}
.srd-faq-question i {
    transition: transform 0.3s;
    color: #ff6725;
}
.srd-faq-item.open .srd-faq-question i {
    transform: rotate(180deg);
}
.srd-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.srd-faq-item.open .srd-faq-answer {
    padding: 0 20px 16px;
    max-height: 600px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .srd-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .srd-search-hero-title {
        font-size: 20px;
    }
    .srd-info-grid {
        grid-template-columns: 1fr;
    }
    .srd-corridors-grid {
        grid-template-columns: 1fr;
    }
    .srd-reset-btn {
        margin-left: 0;
        margin-top: 10px;
    }
}
@media (max-width: 576px) {
    .srd-search-card {
        padding: 20px 16px;
    }
    .srd-result {
        padding: 20px;
    }
}
