/* ==================== FEEDBACK SECTION ==================== */

.feedback-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.feedback-container-inner {
    position: relative;
    z-index: 2;
}

.feedback-text .section-tag {
    color: #2e7d32;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 1rem;
}

.feedback-text .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feedback-text .section-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Benefits List */
.feedback-benefits {
    margin: 2.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-family: 'Nunito Sans', sans-serif;
    color: #333;
    font-size: 1rem;
}

.benefit-item i {
    font-size: 1.25rem;
    color: #2e7d32;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    line-height: 1.6;
}

/* Action Buttons */
.feedback-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-feedback-primary {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.btn-feedback-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
    color: white;
}

.btn-feedback-secondary {
    background: white;
    color: #2e7d32;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid #2e7d32;
    cursor: pointer;
}

.btn-feedback-secondary:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-3px);
}

/* QR Code Box */
.feedback-qr-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.feedback-qr-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(46, 125, 50, 0.15);
}

.qr-display {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.qr-code-image {
    max-width: 100%;
    width: 280px;
    height: auto;
    border-radius: 8px;
}

.qr-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-qr-box.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .feedback-actions {
        flex-direction: column;
    }

    .btn-feedback-primary,
    .btn-feedback-secondary {
        width: 100%;
        justify-content: center;
    }

    .feedback-text .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .feedback-qr-box {
        padding: 2rem 1.5rem;
    }

    .qr-code-image {
        width: 240px;
    }

    .feedback-text .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .feedback-text .section-text {
        font-size: 0.95rem;
    }

    .benefit-item {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    .feedback-actions {
        gap: 0.75rem;
    }

    .btn-feedback-primary,
    .btn-feedback-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feedback-qr-box {
        padding: 1.5rem 1rem;
    }

    .qr-code-image {
        width: 200px;
    }

    .feedback-text .section-title {
        font-size: 1.5rem;
    }

    .feedback-benefits {
        margin: 1.5rem 0;
    }

    .benefit-item {
        gap: 0.75rem;
        margin-bottom: 0.85rem;
    }

    .benefit-item i {
        font-size: 1.1rem;
    }
}
