/* ... existing styles ... */

/* Review Cards */
.review-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #FFD700;
    /* Gold for stars */
}

.text-gray {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.author {
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Form Styles */
input::placeholder,
textarea::placeholder,
select {
    color: #94A3B8;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-teal) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Fix for Select dropdown on dark bg */
select option {
    background-color: var(--bg-darker);
    color: white;
}