/* Modern Feedback Section */
.feedback-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74,144,226,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.feedback-section .section-title {
    margin-bottom: 20px;
    color: #2c3e50;
}

.feedback-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #7f8c8d;
    font-size: 18px;
    line-height: 1.6;
}

.feedback-modern-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    animation: slideUp 0.8s ease-out;
}

.feedback-form-group {
    margin-bottom: 25px;
}

.feedback-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
}

.feedback-form-group input,
.feedback-form-group textarea,
.feedback-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Hind Siliguri', sans-serif;
    transition: all 0.3s ease;
}

.feedback-form-group input:focus,
.feedback-form-group textarea:focus,
.feedback-form-group select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74,144,226,0.1);
}

.feedback-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.feedback-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.feedback-rating input[type="radio"] {
    display: none;
}

.feedback-rating label {
    font-size: 40px;
    cursor: pointer;
    color: #ddd;
    transition: all 0.3s ease;
}

.feedback-rating input[type="radio"]:checked ~ label,
.feedback-rating label:hover,
.feedback-rating label:hover ~ label {
    color: #ffd700;
    transform: scale(1.2);
}

.feedback-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74,144,226,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feedback-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74,144,226,0.5);
}

.feedback-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.feedback-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.feedback-success i {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 20px;
}

.feedback-success h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feedback-success p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-modern-container {
        padding: 30px 20px;
    }
    
    .feedback-rating label {
        font-size: 30px;
    }
}
