
.sa-review-form {
    background: #1f2e4c;
    padding: 32px;
    border-radius: 20px;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.sa-review-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.sa-review-form label {
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.sa-review-form input,
.sa-review-form textarea,
.sa-review-form select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: white;
    margin-bottom: 18px;
}

.sa-review-submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: #c0480b;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.sa-review-submit-btn:hover {
    background: #d85a17;
}

.sa-review-success {
    background: rgba(34,197,94,0.12);
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.sa-review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.sa-review-card {
    background: #1f2e4c;
    padding: 24px;
    border-radius: 18px;
    color: white;
}

.sa-review-stars {
    color: #f5b301;
    margin-bottom: 10px;
}

.sa-review-title {
    color: white;
    margin-bottom: 12px;
}

.sa-review-meta {
    color: #c0480b;
    font-weight: 700;
    margin-bottom: 14px;
}

.sa-review-text {
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
}

@media(max-width:768px){
    .sa-review-grid{
        grid-template-columns:1fr;
    }
}
