/* ==========================================================================
   FEEDBACK SECTION - MODERN REDESIGN
   Inspiring, interactive, fully responsive
   ========================================================================== */

.feedback-section {
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.08), transparent 60%);
    pointer-events: none;
}

.feedback-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

/* =========================
   CTA CARD - LEFT
   ========================= */
.feedback-cta-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    border-radius: var(--radius-lg);
    border: 2px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--t-med) var(--ease);
    position: relative;
    overflow: hidden;
}

.feedback-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
}

.feedback-cta-card:hover::before {
    opacity: 1;
}

.feedback-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover), var(--shadow-glow);
    border-color: rgba(16, 185, 129, 0.4);
}

.feedback-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: feedbackPulse 2s ease-in-out infinite;
    position: relative;
}

/* Fallback background color if gradient fails */
.feedback-icon-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #10b981;
    border-radius: 50%;
    z-index: 0;
}

@keyframes feedbackPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
    }
}

.feedback-icon-large i {
    font-size: 2.5rem !important;
    line-height: 1 !important;
    color: #ffffff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    font-style: normal !important;
    font-weight: normal !important;
    font-family: 'remixicon' !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feedback-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #022c22;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.feedback-cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feedback-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    transition: all var(--t-med) var(--ease);
    position: relative;
    overflow: hidden;
}

.feedback-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
}

.feedback-btn-primary:hover::before {
    opacity: 1;
}

.feedback-btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5), var(--shadow-glow);
}

.feedback-btn-primary i {
    font-size: 1.3rem !important;
    line-height: 1 !important;
    color: #ffffff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal !important;
    font-family: 'remixicon' !important;
    transition: transform var(--t-med) var(--ease);
}

.feedback-btn-primary:hover i {
    transform: translateX(4px);
}

.feedback-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.feedback-note i {
    color: #16a34a !important;
    font-size: 1.1rem;
}

/* =========================
   FEATURES GRID - RIGHT
   ========================= */
.feedback-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feedback-feature-card {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid rgba(180, 180, 180, 0.3);
    box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25);
    text-align: center;
    transition: all var(--t-med) var(--ease);
    position: relative;
    overflow: hidden;
}

.feedback-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
}

.feedback-feature-card:hover::before {
    opacity: 1;
}

.feedback-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(148, 163, 184, 0.35);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-med) var(--ease);
    position: relative;
}

.feature-icon i {
    font-size: 1.8rem !important;
    line-height: 1 !important;
    color: #ffffff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    font-style: normal !important;
    font-weight: normal !important;
    font-family: 'remixicon' !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feedback-feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Fallback solid color */
.feature-icon.icon-blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #3b82f6;
    border-radius: 50%;
    z-index: 0;
}

.feature-icon.icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.feature-icon.icon-green::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #10b981;
    border-radius: 50%;
    z-index: 0;
}

.feature-icon.icon-purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
}

.feature-icon.icon-purple::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #a855f7;
    border-radius: 50%;
    z-index: 0;
}

.feature-icon.icon-orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}

.feature-icon.icon-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #f59e0b;
    border-radius: 50%;
    z-index: 0;
}

.feedback-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #022c22;
    margin-bottom: 0.5rem;
    position: relative;
}

.feedback-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    position: relative;
}

/* =========================
   RESPONSIVE
   ========================= */

/* Tablet */
@media (max-width: 1024px) {
    .feedback-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feedback-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .feedback-wrapper {
        gap: 2rem;
    }

    .feedback-cta-card {
        padding: 2.5rem 2rem;
    }

    .feedback-icon-large {
        width: 70px;
        height: 70px;
    }

    .feedback-icon-large i {
        font-size: 2rem;
    }

    .feedback-cta-title {
        font-size: 1.5rem;
    }

    .feedback-cta-desc {
        font-size: 1rem;
    }

    .feedback-btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .feedback-features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feedback-feature-card {
        padding: 1.5rem 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feedback-feature-card h4 {
        font-size: 1.05rem;
    }

    .feedback-feature-card p {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .feedback-cta-card {
        padding: 2rem 1.5rem;
    }

    .feedback-icon-large {
        width: 60px;
        height: 60px;
    }

    .feedback-icon-large i {
        font-size: 1.8rem;
    }

    .feedback-cta-title {
        font-size: 1.3rem;
    }

    .feedback-cta-desc {
        font-size: 0.95rem;
    }

    .feedback-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .feedback-note {
        font-size: 0.85rem;
    }

    .feedback-feature-card {
        padding: 1.3rem 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .feedback-feature-card h4 {
        font-size: 1rem;
    }

    .feedback-feature-card p {
        font-size: 0.85rem;
    }
}