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

.feedback-section{

    position:relative;
    overflow:hidden;
}

/* ========================================= */
/* WRAPPER */
/* ========================================= */

.feedback-wrapper{
    background:#fff;
    border-radius:28px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

.feedback-wrapper::before{
    content:"";
    position:absolute;
    top:-90px;
    right:-90px;
    width:220px;
    height:220px;
    background:rgba(38,52,137,0.05);
    border-radius:50%;
}

.feedback-wrapper::after{
    content:"";
    position:absolute;
    bottom:-80px;
    left:-80px;
    width:180px;
    height:180px;
    background:rgba(236,29,37,0.05);
    border-radius:50%;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.feedback-header{
    text-align:center;
    margin-bottom:45px;
    position:relative;
    z-index:2;
}

.feedback-title{
    font-size:42px;
    font-weight:800;
    color:var(--primary-blue);
    margin-bottom:12px;
    position:relative;
    display:inline-block;
}

.feedback-title::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
    width:80px;
    height:4px;
    border-radius:10px;
    background:var(--accent-red);
}

.feedback-subtitle{
    margin-top:22px;
    color:#666;
    font-size:16px;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.feedback-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.feedback-card{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:0.35s ease;
    border:1px solid rgba(38,52,137,0.08);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.feedback-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,0.10);
    border-color:rgba(236,29,37,0.25);
}

/* ========================================= */
/* ICON */
/* ========================================= */

.feedback-icon{
    width:80px;
    height:80px;
    margin:auto auto 22px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary-blue),#3144b4);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 12px 25px rgba(38,52,137,0.25);
    transition:0.35s ease;
}

.feedback-card:hover .feedback-icon{
    background:linear-gradient(135deg,var(--accent-red),#c8141b);
    transform:rotateY(180deg);
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.feedback-card h3{
    font-size:22px;
    font-weight:700;
    color:var(--primary-blue);
    margin-bottom:25px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.feedback-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,var(--primary-blue),#3144b4);
    color:#fff !important;
    text-decoration:none !important;
    padding:12px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    transition:0.35s ease;
    box-shadow:0 8px 20px rgba(38,52,137,0.20);
}

.feedback-btn:hover{
    background:linear-gradient(135deg,var(--accent-red),#c8141b);
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(236,29,37,0.25);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:992px){

    .feedback-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .feedback-section{
        padding:45px 0;
    }

    .feedback-wrapper{
        padding:25px;
        border-radius:22px;
    }

    .feedback-title{
        font-size:32px;
    }

    .feedback-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .feedback-card{
        padding:28px 20px;
    }

    .feedback-icon{
        width:70px;
        height:70px;
        font-size:26px;
    }

    .feedback-card h3{
        font-size:20px;
    }

}