:root {
    --google-red: #DB4437;
    --google-blue: #4285F4;
    --google-yellow: #F4B400;
    --google-green: #0F9D58;
}

.feedback-section {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.feedback-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feedback-content {
    text-align: center;
}

.feedback-content h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.feedback-content .subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feedback-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    width: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
}

.google-icon {
    background: conic-gradient(
        var(--google-blue) 0deg 90deg,
        var(--google-red) 90deg 180deg,
        var(--google-yellow) 180deg 270deg,
        var(--google-green) 270deg 360deg
    );
    color: white;
}

.direct-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    color: white;
}

.social-icon {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    color: white;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.card-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.google-card .card-button {
    background: var(--google-blue);
    color: white;
}

.direct-card .card-button {
    background: var(--primary);
    color: white;
}

.card-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.card-button:hover i {
    transform: translateX(5px);
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.card-button:hover::before {
    transform: translateX(0);
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn img {
    width: 34px;
}

.social-btn:hover {
    transform: scale(1.2);
}

.card-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(20, 126, 179, 0.05);
    top: -50px;
    right: -50px;
    z-index: -1;
}

.google-card .card-decoration {
    background: rgba(219, 68, 55, 0.05);
}

.direct-card .card-decoration {
    background: rgba(20, 126, 179, 0.05);
}

.social-card .card-decoration {
    background: rgba(138, 43, 226, 0.05);
}

@media (max-width: 768px) {
    .feedback-content h2 {
        font-size: 2.2rem;
    }
    
    .feedback-card {
        width: 100%;
        max-width: 350px;
    }
}