﻿.satisfaction-page {
    min-height: 100vh;
    padding: 40px 15px;
    background: linear-gradient(135deg, #f7f4ef, #eef6f3);
    font-family: 'Tajawal', Arial, sans-serif;
}

.message-logo {
    max-width: 360px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.survey-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.survey-header {
    text-align: center;
    padding: 40px 30px;
    color: #fff;
    background: linear-gradient(135deg, #0f766e, #14532d);
}

.survey-badge {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.18);
    font-size: 34px;
}

.survey-header h2 {
    font-weight: 800;
    margin-bottom: 12px;
}

.survey-header p {
    max-width: 650px;
    margin: auto;
    line-height: 1.9;
    opacity: .95;
}

.survey-body {
    padding: 35px;
}

.form-label {
    font-weight: 700;
    color: #263238;
    margin-bottom: 8px;
}

    .form-label span {
        color: #dc3545;
    }

.survey-input {
    border-radius: 14px;
    padding: 12px 15px;
    border: 1px solid #dce5e2;
    background: #fbfdfc;
}

    .survey-input:focus {
        border-color: #0f766e;
        box-shadow: 0 0 0 .2rem rgba(15,118,110,.12);
    }

.section-title {
    margin: 35px 0 20px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #ecfdf5;
    color: #14532d;
    font-weight: 800;
    font-size: 18px;
}

    .section-title i {
        margin-left: 8px;
    }

.rating-question {
    background: #fff;
    border: 1px solid #e6eeee;
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 18px;
    transition: .25s ease;
}

    .rating-question:hover {
        border-color: #0f766e;
        box-shadow: 0 10px 25px rgba(15,118,110,.08);
    }

    .rating-question h5 {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.8;
        margin-bottom: 15px;
        color: #263238;
    }

.rating-list {
    width: 100%;
}

    .rating-list table {
        width: 100%;
    }

    .rating-list td {
        text-align: center;
    }

    .rating-list input[type="radio"] {
        display: none;
    }

    .rating-list label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #f1f5f4;
        color: #334155;
        font-weight: 800;
        cursor: pointer;
        transition: .25s ease;
    }

    .rating-list input[type="radio"]:checked + label {
        background: linear-gradient(135deg, #0f766e, #16a34a);
        color: #fff;
        transform: scale(1.08);
        box-shadow: 0 8px 18px rgba(15,118,110,.25);
    }

.survey-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.btn-survey {
    background: linear-gradient(135deg, #0f766e, #16a34a);
    color: #fff;
    border: none;
    padding: 12px 38px;
    border-radius: 999px;
    font-weight: 800;
}

    .btn-survey:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.btn-clear {
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid #dce5e2;
}

@media (max-width: 576px) {
    .survey-body {
        padding: 22px;
    }

    .rating-list label {
        width: 40px;
        height: 40px;
    }

    .survey-actions {
        flex-direction: column;
    }
}


