.contact-section {
    position: relative;
    max-width: 1440px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.3);
    padding: 0;
    overflow: hidden;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    min-height: 120px;
}

.contact-text {
    flex: 1;
    padding-right: 40px;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.contact-button:hover .contact-icon {
    transform: scale(1.1);
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.whatsapp-contact {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    border: 1px solid rgba(18, 140, 126, 0.3);
}

.whatsapp-contact:hover {
    background: linear-gradient(135deg, #0F7A6E 0%, #064A42 100%);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
}

.instagram-contact {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    border: 1px solid rgba(228, 64, 95, 0.3);
}

.instagram-contact:hover {
    background: linear-gradient(135deg, #D73553 0%, #B02D72 100%);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

.facebook-contact {
    background: linear-gradient(135deg, #3A559F 0%, #2D4373 100%);
    border: 1px solid rgba(58, 85, 159, 0.3);
}

.facebook-contact:hover {
    background: linear-gradient(135deg, #334A8B 0%, #263761 100%);
    box-shadow: 0 8px 20px rgba(58, 85, 159, 0.4);
}
@media screen and (max-width: 1024px) {
    .contact-content {
        padding: 0px 20px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-buttons {
        gap: 12px;
    }
    
    .contact-button {
        padding: 14px 20px;
        min-width: 120px;
    }
    
    .contact-label {
        font-size: 13px;
    }
}
@media screen and (max-width: 850px) {
    .contact-content {
        padding: 0px 25px;
    }
    
    .contact-title {
        font-size: 1.65rem;
    }
    
    .contact-buttons {
        gap: 9px;
    }
    
    .contact-button {
        padding: 14px 20px;
        min-width: 100px;
    }
    
    .contact-label {
        font-size: 13px;
    }
}
@media screen and (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        gap: 25px;
    }
    
    .contact-text {
        padding-right: 0;
        margin-bottom: 0;
    }
    
    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-button {
        width: 100%;
        padding: 18px 24px;
        justify-content: center;
        min-width: unset;
    }
    
    .contact-icon {
        width: 22px;
        height: 22px;
    }
    
    .contact-label {
        font-size: 15px;
    }
}
@media screen and (max-width: 480px) {
    .contact-content {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .contact-title {
        font-size: 1.4rem;
        letter-spacing: -0.3px;
    }
    
    .contact-buttons {
        max-width: 260px;
        gap: 12px;
    }
    
    .contact-button {
        padding: 16px 20px;
    }
    
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    
    .contact-label {
        font-size: 14px;
    }
}
@media screen and (max-width: 360px) {
    .contact-content {
        padding: 20px 12px;
        gap: 18px;
    }
    
    .contact-title {
        font-size: 1.2rem;
        letter-spacing: -0.2px;
    }
    
    .contact-buttons {
        max-width: 240px;
        gap: 10px;
    }
    
    .contact-button {
        padding: 14px 18px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    
    .contact-label {
        font-size: 13px;
    }
}
@media screen and (max-width: 320px) {
    .contact-content {
        padding: 18px 10px;
        gap: 15px;
    }
    
    .contact-title {
        font-size: 1.1rem;
        letter-spacing: 0;
    }
    
    .contact-buttons {
        max-width: 220px;
        gap: 8px;
    }
    
    .contact-button {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .contact-icon {
        width: 16px;
        height: 16px;
    }
    
    .contact-label {
        font-size: 12px;
    }
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi) {
    .contact-button {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    
    .contact-button:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
}
.contact-button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.contact-button:focus:not(:focus-visible) {
    outline: none;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .contact-button,
    .contact-icon,
    .contact-button::before {
        transition: none;
    }
    
    .contact-button:hover .contact-icon {
        transform: none;
    }
}