/* Feedback Form Styles - Clean and Modern */

.feedback-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.feedback-form-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.feedback-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.feedback-form-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feedback-icon-bubble {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    position: relative;
}

.feedback-icon-stars {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.feedback-icon-stars .icon-star {
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
}

.feedback-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.feedback-form-description {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.6;
}

.feedback-form-field {
    margin-bottom: 24px;
}

.feedback-form-field input[type="text"],
.feedback-form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #ffffff;
    color: #2c3e50;
}

.feedback-form-field input[type="text"]:focus,
.feedback-form-field textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.feedback-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-rating-field {
    margin-bottom: 24px;
}

.feedback-star-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.feedback-star-rating .star {
    font-size: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    user-select: none;
    display: inline-block;
    color: #ffa500;
    opacity: 0.4;
    text-shadow: 
        0 0 0 #ffa500,
        0 0 0 #ffa500,
        0 0 0 #ffa500;
    filter: drop-shadow(0 0 1px #ffa500);
}

.feedback-star-rating .star:hover {
    opacity: 0.7;
    transform: scale(1.15);
    filter: drop-shadow(0 0 2px #ffa500);
}

.feedback-star-rating .star.active {
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 2px #ffa500);
}

.feedback-star-rating .star.filled {
    opacity: 1;
    filter: drop-shadow(0 0 2px #ffa500);
}

.feedback-form-message {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.feedback-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.feedback-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.feedback-form-container .feedback-form button[type="submit"],
.feedback-form-container .feedback-form-submit,
.feedback-form button[type="submit"],
.feedback-form-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.feedback-form-container .feedback-form button[type="submit"]:hover,
.feedback-form-container .feedback-form-submit:hover,
.feedback-form button[type="submit"]:hover,
.feedback-form-submit:hover {
    background: #2c2c2c !important;
    background-color: #2c2c2c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.feedback-form-container .feedback-form button[type="submit"]:active,
.feedback-form-container .feedback-form-submit:active,
.feedback-form button[type="submit"]:active,
.feedback-form-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

.feedback-form-container .feedback-form button[type="submit"]:disabled,
.feedback-form-container .feedback-form-submit:disabled,
.feedback-form button[type="submit"]:disabled,
.feedback-form-submit:disabled {
    background: #95a5a6 !important;
    background-color: #95a5a6 !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-form-container {
        padding: 20px 10px;
    }
    
    .feedback-form-card {
        padding: 30px 20px;
        width: 80% !important;
        max-width: 80% !important;
        margin: 0 auto;
    }
    
    .feedback-form-title {
        font-size: 24px;
    }
    
    .feedback-star-rating .star {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .feedback-form-card {
        width: 80% !important;
        max-width: 80% !important;
        padding: 25px 15px;
    }
}

